Finalize fields where possible (#1021)

This commit is contained in:
Adam
2020-09-20 09:01:37 -07:00
committed by GitHub
parent bf214afe2e
commit 26124d3dee
33 changed files with 87 additions and 87 deletions
@@ -26,7 +26,7 @@ public class AccrueClaimBlocksEvent extends Event
return handlers;
}
private Player player;
private final Player player;
private int blocksToAccrue;
private boolean isIdle = false;
private boolean cancelled = false;
@@ -21,7 +21,7 @@ public class ClaimDeletedEvent extends Event
return handlers;
}
private Claim claim;
private final Claim claim;
public ClaimDeletedEvent(Claim claim)
{
@@ -24,7 +24,7 @@ public class ClaimModifiedEvent extends Event implements Cancellable
private final Claim from;
private final Claim to;
private CommandSender modifier;
private final CommandSender modifier;
private boolean cancelled;
public ClaimModifiedEvent(Claim from, Claim to, CommandSender modifier)
@@ -25,10 +25,10 @@ public class PlayerKickBanEvent extends Event
return handlers;
}
private Player player;
private String reason;
private String source;
private boolean ban;
private final Player player;
private final String reason;
private final String source;
private final boolean ban;
private boolean cancelled = false;
/**
@@ -10,7 +10,7 @@ public class PreventBlockBreakEvent extends Event implements Cancellable
{
private static final HandlerList handlers = new HandlerList();
private boolean cancelled = false;
private BlockBreakEvent innerEvent;
private final BlockBreakEvent innerEvent;
public static HandlerList getHandlerList()
{