1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

ThreadService implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-27 12:35:05 -03:00
parent 73f51e53c0
commit faec07b8d5
23 changed files with 532 additions and 85 deletions

View File

@@ -200,7 +200,7 @@ public class EhCacheService extends AbstractService implements CacheService {
final Element element = cache.get(key);
if (element == null)
return null;
return (V) element.getValue();
return (V) element.getObjectValue();
}
@Override