Change jarfile property in Plugin to file

This commit is contained in:
Robin Lambertz 2013-04-25 01:19:14 +02:00 committed by md_5
parent 18a5534499
commit 7338e20e98

View File

@ -18,8 +18,8 @@ public class Plugin
@Getter
private ProxyServer proxy;
@Getter
private File jarfile;
private File file;
/**
* Called when the plugin has just been loaded. Most of the proxy will not
* be initialized, so only use it for registering
@ -73,10 +73,10 @@ public class Plugin
* @param description the description that describes this plugin
* @param jarfile this plugins jar or container
*/
final void init(ProxyServer proxy, PluginDescription description, File jarfile)
final void init(ProxyServer proxy, PluginDescription description, File file)
{
this.proxy = proxy;
this.description = description;
this.jarfile = jarfile;
this.file = file;
}
}