Removed unused AbstractFlagListener#getWhy()

This commit is contained in:
Florian CUNY 2018-11-03 11:22:49 +01:00
parent dcd8a4ea28
commit 6108277b3c

View File

@ -50,7 +50,6 @@ public abstract class AbstractFlagListener implements Listener {
private BentoBox plugin = BentoBox.getInstance(); private BentoBox plugin = BentoBox.getInstance();
private User user = null; private User user = null;
private Why why;
/** /**
* @return the plugin * @return the plugin
@ -257,12 +256,4 @@ public abstract class AbstractFlagListener implements Listener {
protected IslandWorldManager getIWM() { protected IslandWorldManager getIWM() {
return plugin.getIWM(); return plugin.getIWM();
} }
/**
* Get why the flag was allowed or not allowed
* @return the why - reason
*/
public Why getWhy() {
return why;
}
} }