summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.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
commit51bd0d88f393dbd675d2227e84d24fe9d6313712 (patch)
tree3f1b11f2eed0ed31c63e7a82cb666c3082f2df95 /Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
parent726690817781c43b2bdeaf9212cc7c7d23c2c8ff (diff)
downloadEssentials-51bd0d88f393dbd675d2227e84d24fe9d6313712.tar
Essentials-51bd0d88f393dbd675d2227e84d24fe9d6313712.tar.gz
Essentials-51bd0d88f393dbd675d2227e84d24fe9d6313712.tar.lz
Essentials-51bd0d88f393dbd675d2227e84d24fe9d6313712.tar.xz
Essentials-51bd0d88f393dbd675d2227e84d24fe9d6313712.zip
Future Java versions may not support _ as identifier.
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java b/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
index c33e87522..1f5a00fbd 100644
--- a/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
+++ b/Essentials/src/com/earth2me/essentials/commands/PlayerNotFoundException.java
@@ -1,11 +1,11 @@
package com.earth2me.essentials.commands;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
public class PlayerNotFoundException extends NoSuchFieldException
{
public PlayerNotFoundException()
{
- super(_("playerNotFound"));
+ super(tl("playerNotFound"));
}
}