Remove @overrides from EntityCombust

By: Taylor Kelly <tkelly910@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-11 19:41:04 -05:00
parent 6260932a36
commit 0621fedd0b

View file

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