diff options
Diffstat (limited to 'EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java')
-rw-r--r-- | EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java b/EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java deleted file mode 100644 index 717163726..000000000 --- a/EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.earth2me.essentials.update; - -import org.bukkit.plugin.Plugin; - - -public class UpdatesDownloader extends WorkListener -{ - public UpdatesDownloader(final Plugin plugin, final VersionInfo newVersionInfo) - { - super(plugin, newVersionInfo); - } - - public void start() - { - } - - @Override - public void onWorkAbort(String message) - { - throw new UnsupportedOperationException("Not supported yet."); - } - - @Override - public void onWorkDone(String message) - { - throw new UnsupportedOperationException("Not supported yet."); - } -} |