From 5724c0c8df28bdf3911f19356806969a3b820b35 Mon Sep 17 00:00:00 2001 From: FearFree Date: Thu, 20 Mar 2014 10:54:07 -0500 Subject: Future Java versions may not support _ as identifier. --- .../src/com/earth2me/essentials/protect/EssentialsConnect.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'EssentialsProtect/src/com') 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; -- cgit v1.2.3