summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/world/WorldUnloadEvent.java
diff options
context:
space:
mode:
authorErik Broes <erikbroes@grum.nl>2011-07-17 17:02:03 +0200
committerErik Broes <erikbroes@grum.nl>2011-07-17 17:20:22 +0200
commit6ff9f7cad6bbb38b796fed464153eb9634121a54 (patch)
treedc9e811100e2354176d2c54092a32177830269b2 /src/main/java/org/bukkit/event/world/WorldUnloadEvent.java
parentb5f8bb54343ef7f3f8b0bee8a16a851fecd04d30 (diff)
downloadbukkit-6ff9f7cad6bbb38b796fed464153eb9634121a54.tar
bukkit-6ff9f7cad6bbb38b796fed464153eb9634121a54.tar.gz
bukkit-6ff9f7cad6bbb38b796fed464153eb9634121a54.tar.lz
bukkit-6ff9f7cad6bbb38b796fed464153eb9634121a54.tar.xz
bukkit-6ff9f7cad6bbb38b796fed464153eb9634121a54.zip
Remove superfluous javadocs
Diffstat (limited to 'src/main/java/org/bukkit/event/world/WorldUnloadEvent.java')
-rw-r--r--src/main/java/org/bukkit/event/world/WorldUnloadEvent.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/java/org/bukkit/event/world/WorldUnloadEvent.java b/src/main/java/org/bukkit/event/world/WorldUnloadEvent.java
index 2bfb2213..30c0f15a 100644
--- a/src/main/java/org/bukkit/event/world/WorldUnloadEvent.java
+++ b/src/main/java/org/bukkit/event/world/WorldUnloadEvent.java
@@ -7,29 +7,16 @@ import org.bukkit.event.Cancellable;
* Called when a World is unloaded
*/
public class WorldUnloadEvent extends WorldEvent implements Cancellable {
-
private boolean isCancelled;
public WorldUnloadEvent(World world) {
super(Type.WORLD_UNLOAD, world);
}
- /**
- * 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 this.isCancelled;
}
- /**
- * 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.isCancelled = cancel;
}