diff options
author | snowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb> | 2011-05-10 21:53:27 +0000 |
---|---|---|
committer | snowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb> | 2011-05-10 21:53:27 +0000 |
commit | a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb (patch) | |
tree | 8e391ad655f021a7b532a4b30ee59846e4440c52 /EssentialsProtect/src/com/earth2me | |
parent | 07e49c3fbb533438769336e3f8dc9753055e4d38 (diff) | |
download | Essentials-a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb.tar Essentials-a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb.tar.gz Essentials-a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb.tar.lz Essentials-a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb.tar.xz Essentials-a2ed8ea52a8ac5ff44d6ddd55cd6c08a335ff4eb.zip |
IConfExternal is abstract class for other jars, because the interface is not accessible.
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1417 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'EssentialsProtect/src/com/earth2me')
-rw-r--r-- | EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java index a4522c7f2..4d4ca1769 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/EssentialsProtect.java @@ -2,6 +2,7 @@ package com.earth2me.essentials.protect; import com.earth2me.essentials.Essentials; import com.earth2me.essentials.IConf; +import com.earth2me.essentials.IConfExternal; import com.earth2me.essentials.User; import com.earth2me.essentials.Util; import java.util.ArrayList; @@ -77,7 +78,7 @@ public class EssentialsProtect extends JavaPlugin pm.registerEvent(Type.PLUGIN_ENABLE, serverListener, Priority.Highest, this); reloadConfig(); - Essentials.getStatic().addReloadListener(new IConf() { + Essentials.getStatic().addReloadListener(new IConfExternal() { public void reloadConfig() { |