mirror of
https://github.com/essentials/Essentials.git
synced 2025-09-25 21:59:08 +02:00
29 lines
527 B
Java
29 lines
527 B
Java
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.");
|
|
}
|
|
}
|