JavaDoc cleanup.

This commit is contained in:
EvilSeph
2011-06-22 17:05:45 -04:00
parent 7524109bf0
commit f709af58e5
12 changed files with 87 additions and 38 deletions

View File

@@ -7,8 +7,6 @@ import org.bukkit.util.Vector;
/**
* Event called on dispense of an item from a block.
*
* @author sk89q
*/
public class BlockDispenseEvent extends BlockEvent implements Cancellable {
@@ -26,7 +24,7 @@ public class BlockDispenseEvent extends BlockEvent implements Cancellable {
* Get the item that is being dispensed. Modifying the returned item
* will have no effect.
*
* @return
* @return an ItemStack for the item being dispensed
*/
public ItemStack getItem() {
return item.clone();
@@ -45,7 +43,7 @@ public class BlockDispenseEvent extends BlockEvent implements Cancellable {
* Gets the velocity. Modifying the returned Vector will not
* change the velocity.
*
* @return
* @return a Vector for the dispensed item's velocity
*/
public Vector getVelocity() {
return velocity.clone();