2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 08:00:26 +00:00

Perform some code tweaks and fix some spelling.

This commit is contained in:
Tux
2015-06-24 06:06:34 -04:00
parent b5328c758b
commit 21710fcd8e
3 changed files with 12 additions and 12 deletions

View File

@@ -76,11 +76,11 @@ public class DataManager implements Listener {
}, 1, 1, TimeUnit.MINUTES);
}
public static <K, V> InternalCache<K, V> createCache() {
private static <K, V> InternalCache<K, V> createCache() {
return new InternalCache<>();
}
public static <K, V> InternalCache<K, V> createCache(long entryWriteExpiry) {
private static <K, V> InternalCache<K, V> createCache(long entryWriteExpiry) {
return new InternalCache<>(entryWriteExpiry);
}