Allow SimpleCache to accept Object as opposed to just Serializable. It is possible now after EHCache changes

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5733 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2007-05-21 08:45:46 +00:00
parent 6cc8f52082
commit 8ee3f781f4
4 changed files with 6 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ import java.util.Collection;
*
* @author Derek Hulley
*/
public interface SimpleCache<K extends Serializable, V extends Serializable>
public interface SimpleCache<K extends Serializable, V extends Object>
{
public boolean contains(K key);