summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/com/earth2me/essentials/update/UpdatesDownloader.java
blob: 717163726fd4d1cc2cac396f4f820de1b551c518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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.");
	}
}