Fix some JavaDoc

This commit is contained in:
graywolf336 2014-02-15 00:58:48 -06:00
parent 620c57cdc9
commit 7af47bd2e0

View File

@ -32,12 +32,13 @@ public class PrePrisonerTransferredEvent extends Event implements Cancellable {
/** /**
* Creates a new {@link PrePrisonerTransferredEvent prisoner transferred event} for the given player before they get transferred to their jail and cell. * Creates a new {@link PrePrisonerTransferredEvent prisoner transferred event} for the given player before they get transferred to their jail and cell.
* *
* @param jail The jail the prisoner will be jailed at. * @param originalJail The jail the prisoner is coming from.
* @param cell The cell we're going to be sending the prisoner to, can be null. * @param originalCell The cell the prisoner is coming from, can be null.
* @param targetJail The jail the prisoner is going to.
* @param targetCell The cell the prisoner is going to, can be null.
* @param prisoner The prisoner data. * @param prisoner The prisoner data.
* @param player The player being jailed. * @param player The player being jailed.
* @param online Whether the player is online or not. * @param targetCell The name of what is transferring this prisoner.
* @param jailer The name of what jailed this prisoner.
*/ */
public PrePrisonerTransferredEvent(Jail originalJail, Cell originalCell, Jail targetJail, Cell targetCell, Prisoner prisoner, Player player, String transferor) { public PrePrisonerTransferredEvent(Jail originalJail, Cell originalCell, Jail targetJail, Cell targetCell, Prisoner prisoner, Player player, String transferor) {
this.originalJail = originalJail; this.originalJail = originalJail;