Fixed Govindas weirdness on project files

This commit is contained in:
mohammed jasem alaajel
2021-05-04 18:00:16 +04:00
parent d98bc34b38
commit a72da39839
12 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
package com.btk5h.skriptdb.events;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
public class SQLQueryCompleteEvent extends Event {
private final static HandlerList HANDLERS = new HandlerList();
private String argument;
private Object variables;
public SQLQueryCompleteEvent(String argument) {
super(true);
this.argument = argument;
// this.variables = variables;
}
@Override
public String getEventName() {
return super.getEventName();
}
@Override
public HandlerList getHandlers() {
return HANDLERS;
}
public static HandlerList getHandlerList() {
return HANDLERS;
}
public String getArgument() {
return argument;
}
// public String getVariables() {return;}
}