+ fix compilation error

This commit is contained in:
Costin Leau 2011-07-13 13:51:20 +00:00
parent b82ab4950d
commit f5fdedea60
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class EhCacheCache implements Cache {
public ValueWrapper get(Object key) {
Element element = cache.get(key);
return (element != null ? new DefaultValueWrapper<Object>(element.getObjectValue()) : null);
return (element != null ? new DefaultValueWrapper(element.getObjectValue()) : null);
}
public void put(Object key, Object value) {