-More changes related to Javolution drop.

-Disabled html LazyCache by default.
This commit is contained in:
mobius
2015-02-09 13:11:58 +00:00
parent 303c3c65d2
commit 2452f7ea20
15 changed files with 35 additions and 65 deletions

View File

@@ -61,7 +61,7 @@ public class LoginController
public static final int LOGIN_TIMEOUT = 60 * 1000;
/** Authed Clients on LoginServer */
protected ConcurrentHashMap<String, L2LoginClient> _loginServerClients = new ConcurrentHashMap<>();
protected Map<String, L2LoginClient> _loginServerClients = new ConcurrentHashMap<>();
private final Map<InetAddress, Integer> _failedLoginAttemps = new HashMap<>();
private final Map<InetAddress, Long> _bannedIps = new ConcurrentHashMap<>();