reformat code (thanks TPGamesNL)

This commit is contained in:
Govindas
2021-06-22 21:26:46 +03:00
parent db5174508f
commit 131ab77c91
9 changed files with 482 additions and 481 deletions

View File

@@ -5,13 +5,18 @@ import org.bukkit.event.HandlerList;
public class SQLQueryCompleteEvent extends Event {
private final static HandlerList HANDLERS = new HandlerList();
private String argument;
private final String argument;
public SQLQueryCompleteEvent(String argument) {
super(true);
this.argument = argument;
// this.variables = variables;
// this.variables = variables;
}
public static HandlerList getHandlerList() {
return HANDLERS;
}
@Override
public String getEventName() {
return super.getEventName();
@@ -21,13 +26,10 @@ public class SQLQueryCompleteEvent extends Event {
public HandlerList getHandlers() {
return HANDLERS;
}
public static HandlerList getHandlerList() {
return HANDLERS;
}
public String getQuery() {
return argument;
}
// public String getVariables() {return;}
// public String getVariables() {return;}
}