Remove superfluous javadocs
This commit is contained in:
@@ -33,26 +33,10 @@ public class BlockFadeEvent extends BlockEvent implements Cancellable {
|
||||
return newState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the cancellation state of this event. A cancelled event will not
|
||||
* be executed in the server, but will still pass to other plugins.
|
||||
*<p />
|
||||
* If a Block Fade event is cancelled, the block will not fade, melt or disappear.
|
||||
*
|
||||
* @return true if this event is cancelled
|
||||
*/
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the cancellation state of this event. A cancelled event will not
|
||||
* be executed in the server, but will still pass to other plugins.
|
||||
*<p />
|
||||
* If a Block Fade event is cancelled, the block will not fade, melt or disappear.
|
||||
*
|
||||
* @param cancel true if you wish to cancel blocks like snow or ice from melting or fading
|
||||
*/
|
||||
public void setCancelled(boolean cancel) {
|
||||
this.cancelled = cancel;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user