summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect
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
commita4f8193e385a7e15158fc0fd8f9de85357d52478 (patch)
treed06a0ba3d68de805a81b427dba16de832060bc8a /EssentialsProtect
parent7a31d2e213656a59c375eab01470cb8dd88893b9 (diff)
downloadEssentials-a4f8193e385a7e15158fc0fd8f9de85357d52478.tar
Essentials-a4f8193e385a7e15158fc0fd8f9de85357d52478.tar.gz
Essentials-a4f8193e385a7e15158fc0fd8f9de85357d52478.tar.lz
Essentials-a4f8193e385a7e15158fc0fd8f9de85357d52478.tar.xz
Essentials-a4f8193e385a7e15158fc0fd8f9de85357d52478.zip
Future Java versions may not support _ as identifier.
Diffstat (limited to 'EssentialsProtect')
-rw-r--r--EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsConnect.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsConnect.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsConnect.java
index 2c87ce332..58290a8b8 100644
--- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsConnect.java
+++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsConnect.java
@@ -1,6 +1,6 @@
package com.earth2me.essentials.protect;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.IConf;
import net.ess3.api.IEssentials;
import java.util.logging.Level;
@@ -18,7 +18,7 @@ public class EssentialsConnect
{
if (!essProtect.getDescription().getVersion().equals(essPlugin.getDescription().getVersion()))
{
- LOGGER.log(Level.WARNING, _("versionMismatchAll"));
+ LOGGER.log(Level.WARNING, tl("versionMismatchAll"));
}
ess = (IEssentials)essPlugin;
protect = (IProtect)essProtect;