Skip to content

Commit

Permalink
Fix table formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
FireInstall committed Jul 19, 2024
1 parent 05c760c commit d613530
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public class FloorDegenerator {
private final Location xSidePos2;
private final Location zSideNeg2;
private final Location zSidePos2;
private long timeDelay = 30;
private Minigame mgm = null;
private final Minigame mgm;
private long timeDelay;
private int taskID = -1;

private int radiusModifier = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitTask;
import org.bukkit.util.Vector;
import org.jetbrains.annotations.NotNull;

import java.util.IdentityHashMap;
import java.util.Map;
Expand Down Expand Up @@ -126,7 +127,7 @@ protected void onHide(IDisplayObject object) {
}
}

protected void onRemove(IDisplayObject object) {
protected void onRemove(@NotNull IDisplayObject object) {
if (object.isPlayerDisplay()) {
playerDisplays.remove(object.getPlayer(), object);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public boolean signCreate(@NotNull SignChangeEvent event) {
return true;
}

// the error in this Java doc is known. We don't need access, we need dokumention.
// the error in this Java doc is known. We don't need access, we need documentation.
/**
* actual handling of taking the flag is in {@link CTFMechanic#takeFlag(PlayerInteractEvent)}
*/
Expand Down

0 comments on commit d613530

Please sign in to comment.