Remove @overrides from EntityCombust

This commit is contained in:
Taylor Kelly 2011-01-11 19:41:04 -05:00
parent b13da85182
commit c5e31fd6f3

View File

@ -15,12 +15,10 @@ public class EntityCombustEvent extends EntityEvent implements Cancellable {
this.cancel = false; this.cancel = false;
} }
@Override
public boolean isCancelled() { public boolean isCancelled() {
return cancel; return cancel;
} }
@Override
public void setCancelled(boolean cancel) { public void setCancelled(boolean cancel) {
this.cancel = cancel; this.cancel = cancel;
} }