Pulling all pending Bukkit-JavaDoc changes
By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
@@ -37,7 +37,9 @@ public class Potion {
|
||||
}
|
||||
}
|
||||
|
||||
/** @deprecated In favour of {@link #Potion(PotionType, int)} */
|
||||
/**
|
||||
* @deprecated In favour of {@link #Potion(PotionType, int)}
|
||||
*/
|
||||
@SuppressWarnings("javadoc")
|
||||
@Deprecated
|
||||
public Potion(PotionType type, Tier tier) {
|
||||
@@ -45,14 +47,18 @@ public class Potion {
|
||||
Validate.notNull(type, "Type cannot be null");
|
||||
}
|
||||
|
||||
/** @deprecated In favour of {@link #Potion(PotionType, int, boolean)} */
|
||||
/**
|
||||
* @deprecated In favour of {@link #Potion(PotionType, int, boolean)}
|
||||
*/
|
||||
@SuppressWarnings("javadoc")
|
||||
@Deprecated
|
||||
public Potion(PotionType type, Tier tier, boolean splash) {
|
||||
this(type, tier == Tier.TWO ? 2 : 1, splash);
|
||||
}
|
||||
|
||||
/** @deprecated In favour of {@link #Potion(PotionType, int, boolean, boolean)} */
|
||||
/**
|
||||
* @deprecated In favour of {@link #Potion(PotionType, int, boolean, boolean)}
|
||||
*/
|
||||
@SuppressWarnings("javadoc")
|
||||
@Deprecated
|
||||
public Potion(PotionType type, Tier tier, boolean splash, boolean extended) {
|
||||
|
||||
Reference in New Issue
Block a user