1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-10 09:22:49 +00:00

Automatic database updates

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-31 19:03:03 -03:00
parent 657b555fe1
commit 551dc6917e
26 changed files with 355 additions and 113 deletions

View File

@@ -16,6 +16,7 @@
*/
package com.l2jserver.service.cache;
import java.util.Iterator;
import java.util.Map;
import org.slf4j.Logger;
@@ -84,4 +85,9 @@ class EternalCache<K, V> implements Cache<K, V> {
cacheMap.clear();
log.debug("{}: cleared", cacheName);
}
@Override
public Iterator<V> iterator() {
return cacheMap.values().iterator();
}
}