Skip to content

Commit

Permalink
set to null instead
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Jan 9, 2025
1 parent a3aaaf9 commit e6bae39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void disable() {
HandlerList.unregisterAll(this);
if (removalList != null) {
setBlocksToAir();
removalList.clear();
removalList = null;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void disable() {
HandlerList.unregisterAll(this);
if (removalList != null) {
setBlocksToAir();
removalList.clear();
removalList = null;
}
}

Expand Down

0 comments on commit e6bae39

Please sign in to comment.