mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-21 21:39:05 +00:00
+ 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:
Vendored
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user