diff options
author | snowleo <schneeleo@gmail.com> | 2013-05-03 00:12:40 +0200 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2013-05-03 00:12:40 +0200 |
commit | 0f4982f4787defa9afb070d2256035963c884784 (patch) | |
tree | cb8b842adff3b040838d2e8f049b6a1c4552137c /EssentialsGeoIP/src/com | |
parent | b66beb47bbc25776c0534d289b0f137c2cc53572 (diff) | |
download | Essentials-0f4982f4787defa9afb070d2256035963c884784.tar Essentials-0f4982f4787defa9afb070d2256035963c884784.tar.gz Essentials-0f4982f4787defa9afb070d2256035963c884784.tar.lz Essentials-0f4982f4787defa9afb070d2256035963c884784.tar.xz Essentials-0f4982f4787defa9afb070d2256035963c884784.zip |
Fix cleanup to not hold Users in memory.
Diffstat (limited to 'EssentialsGeoIP/src/com')
-rw-r--r-- | EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIPPlayerListener.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIPPlayerListener.java b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIPPlayerListener.java index 31324a841..1d37f585d 100644 --- a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIPPlayerListener.java +++ b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIPPlayerListener.java @@ -29,7 +29,7 @@ public class EssentialsGeoIPPlayerListener implements Listener, IConf private static final Logger logger = Logger.getLogger("Minecraft"); File databaseFile; File dataFolder; - EssentialsConf config; + final EssentialsConf config; private final transient IEssentials ess; public EssentialsGeoIPPlayerListener(File dataFolder, IEssentials ess) |