summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java b/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java
index 531d9ead6..fd51c04e8 100644
--- a/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java
+++ b/Essentials/src/com/earth2me/essentials/api/UserDoesNotExistException.java
@@ -1,12 +1,12 @@
package com.earth2me.essentials.api;
-import static com.earth2me.essentials.I18n._;
+import static com.earth2me.essentials.I18n.tl;
public class UserDoesNotExistException extends Exception
{
public UserDoesNotExistException(String name)
{
- super(_("userDoesNotExist", name));
+ super(tl("userDoesNotExist", name));
}
}