Remove superfluous javadocs

This commit is contained in:
Erik Broes
2011-07-17 17:02:03 +02:00
parent 75d550a23c
commit 46d8c4d92f
49 changed files with 7 additions and 659 deletions

View File

@@ -78,22 +78,10 @@ public class FurnaceBurnEvent extends Event implements Cancellable {
this.burning = burning;
}
/**
* Gets the cancellation state of this event. A cancelled event will not
* be executed in the server, but will still pass to other plugins
*
* @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
*
* @param cancel true if you wish to cancel this event
*/
public void setCancelled(boolean cancel) {
this.cancelled = cancel;
}

View File

@@ -59,22 +59,10 @@ public class FurnaceSmeltEvent extends Event implements Cancellable{
this.result = result;
}
/**
* Gets the cancellation state of this event. A cancelled event will not
* be executed in the server, but will still pass to other plugins
*
* @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
*
* @param cancel true if you wish to cancel this event
*/
public void setCancelled(boolean cancel) {
this.cancelled = cancel;
}