Skip to content

Commit

Permalink
add missing static handler list getters
Browse files Browse the repository at this point in the history
  • Loading branch information
YouHaveTrouble committed Nov 20, 2023
1 parent 8ae6e92 commit d15ccbe
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ public void setCancelled(boolean cancel) {
public HandlerList getHandlers() {
return HANDLERS;
}

@NotNull
public static HandlerList getHandlerList() {
return HANDLERS;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ public void setCancelled(boolean cancel) {
public HandlerList getHandlers() {
return HANDLERS;
}

@NotNull
public static HandlerList getHandlerList() {
return HANDLERS;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,9 @@ public void setSendMessage(boolean sendMessage) {
public HandlerList getHandlers() {
return HANDLERS;
}

@NotNull
public static HandlerList getHandlerList() {
return HANDLERS;
}
}

0 comments on commit d15ccbe

Please sign in to comment.