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

@@ -44,7 +44,7 @@ import org.alfresco.error.AlfrescoRuntimeException;
*
* @author Derek Hulley
*/
public class EhCacheAdapter<K extends Serializable, V extends Serializable>
public class EhCacheAdapter<K extends Serializable, V extends Object>
implements SimpleCache<K, V>
{
private net.sf.ehcache.Cache cache;