Default the cancelled to false.

This commit is contained in:
graywolf336 2014-02-15 00:16:52 -06:00
parent b9d6fafac7
commit d049dba447

View File

@ -22,7 +22,7 @@ import com.graywolf336.jail.beans.Prisoner;
*/ */
public class PrePrisonerJailedEvent extends Event implements Cancellable { public class PrePrisonerJailedEvent extends Event implements Cancellable {
private static final HandlerList handlers = new HandlerList(); private static final HandlerList handlers = new HandlerList();
private boolean cancelled; private boolean cancelled = false;
private boolean online; private boolean online;
private Jail jail; private Jail jail;
private Cell cell; private Cell cell;