mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 14:33:09 +01:00
Remove @overrides from EntityCombust
By: Taylor Kelly <tkelly910@gmail.com>
This commit is contained in:
parent
6260932a36
commit
0621fedd0b
1 changed files with 0 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue