+ fix compilation error

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4693 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Costin Leau
2011-07-13 13:51:20 +00:00
parent 7cd1791b20
commit 0640853200
@@ -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) {