Correct incomplete documentation in UpdateTileItemEvent.

This commit is contained in:
Major-
2014-02-16 17:20:45 +00:00
parent cc89af0167
commit 57f08d8bfc
@@ -28,8 +28,7 @@ public final class UpdateTileItemEvent extends Event {
/** /**
* Creates a new event that updates the previous amount of the item. * Creates a new event that updates the previous amount of the item.
* *
* @param id The id of the item. * @param id The item to be placed.
* @param amount The amount of the item.
* @param previousAmount The previous amount of the item. * @param previousAmount The previous amount of the item.
*/ */
public UpdateTileItemEvent(Item item, int previousAmount) { public UpdateTileItemEvent(Item item, int previousAmount) {
@@ -39,12 +38,9 @@ public final class UpdateTileItemEvent extends Event {
/** /**
* Creates a new set tile item event. * Creates a new set tile item event.
* *
* @param id The id of the item. * @param id The item to be placed.
* @param amount The new amount of the item.
* @param stackable Whether the item is stackable or not.
* @param positionOffset The offset from the client's base position.
* @param updating If the item is being updated or not.
* @param previousAmount The previous amount of the item. * @param previousAmount The previous amount of the item.
* @param positionOffset The offset from the client's base position.
*/ */
public UpdateTileItemEvent(Item item, int previousAmount, int positionOffset) { public UpdateTileItemEvent(Item item, int previousAmount, int positionOffset) {
this.item = item; this.item = item;