just so i dont have to update the documentation lol

This commit is contained in:
2022-04-24 00:43:54 -05:00
parent 5fd22ba582
commit bfdce97271
9 changed files with 23 additions and 7 deletions

View File

@ -6,6 +6,16 @@ jar {
archiveBaseName.set("Plex-API")
}
tasks {
jar {
finalizedBy(rootProject.tasks.copyJars)
}
shadowJar {
enabled = false
}
}
publishing {
publications {
maven(MavenPublication) {

View File

@ -36,5 +36,4 @@ public class AdminAddEvent extends Event
{
return handlers;
}
}

View File

@ -13,7 +13,6 @@ import org.jetbrains.annotations.NotNull;
@Data
public class GameModeUpdateEvent extends Event
{
private static final HandlerList handlers = new HandlerList();
private final CommandSender sender;

View File

@ -11,7 +11,6 @@ import org.bukkit.event.HandlerList;
@Getter
public class PunishedPlayerMuteEvent extends PunishedPlayerEvent implements Cancellable
{
private static final HandlerList handlers = new HandlerList();
/**

View File

@ -7,7 +7,6 @@ import org.bukkit.permissions.PermissionAttachment;
public interface IPlexPlayer
{
String getId();
UUID getUuid();

View File

@ -6,7 +6,6 @@ import org.json.JSONObject;
public interface IRank
{
int getLevel();
String getLoginMessage();