summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
diff options
context:
space:
mode:
authorFearFree <fearfree@cubetown.net>2014-03-20 10:54:07 -0500
committerChris Ward <chris@chrisgward.com>2014-03-22 16:08:11 +1100
commit5724c0c8df28bdf3911f19356806969a3b820b35 (patch)
tree85568c6caff64c3e9375cafd4032aa6a03a92aef /EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
parent0b5718f7ffc249126199a8eb2278cde47a997506 (diff)
downloadEssentials-5724c0c8df28bdf3911f19356806969a3b820b35.tar
Essentials-5724c0c8df28bdf3911f19356806969a3b820b35.tar.gz
Essentials-5724c0c8df28bdf3911f19356806969a3b820b35.tar.lz
Essentials-5724c0c8df28bdf3911f19356806969a3b820b35.tar.xz
Essentials-5724c0c8df28bdf3911f19356806969a3b820b35.zip
Future Java versions may not support _ as identifier.
Diffstat (limited to 'EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java')
-rw-r--r--EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
index 02e901b5b..aced4ccb8 100644
--- a/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
+++ b/EssentialsGeoIP/src/com/earth2me/essentials/geoip/EssentialsGeoIP.java
@@ -1,6 +1,6 @@
package com.earth2me.essentials.geoip;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
import net.ess3.api.IEssentials;
import java.util.logging.Level;
import org.bukkit.plugin.PluginManager;
@@ -25,7 +25,7 @@ public class EssentialsGeoIP extends JavaPlugin
final IEssentials ess = (IEssentials)pm.getPlugin("Essentials");
if (!this.getDescription().getVersion().equals(ess.getDescription().getVersion()))
{
- getLogger().log(Level.WARNING, _("versionMismatchAll"));
+ getLogger().log(Level.WARNING, tl("versionMismatchAll"));
}
if (!ess.isEnabled()) {
this.setEnabled(false);