Fixed a couple of mistakes in the JavaDoc.

This commit is contained in:
Kristian S. Stangeland 2013-01-22 13:33:24 +01:00
parent c6d896d717
commit 74ecb14a33
3 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ public final class Packets {
public static final int ARM_ANIMATION = 18;
public static final int NAMED_ENTITY_SPAWN = 20;
/**
* Removed in 1.4.6 and replaced with {@link VEHICLE_SPAWN}.
* Removed in 1.4.6 and replaced with VEHICLE_SPAWN.
* @see <a href="http://www.wiki.vg/Protocol_History#2012-12-20">Protocol History - MinecraftCoalition</a>
*/
@Deprecated()

View File

@ -40,7 +40,6 @@ public class PrettyPrinter {
/**
* Print the content of an object.
* @param object - the object to serialize.
* @param stop - superclass that will stop the process.
* @return String representation of the class.
* @throws IllegalAccessException
*/

View File

@ -221,7 +221,7 @@ public class MinecraftReflection {
/**
* Determine if the given object is a NMS ItemStack.
* @param obj - the given object.
* @param value - the given object.
* @return TRUE if it is, FALSE otherwise.
*/
public static boolean isItemStack(Object value) {
@ -549,7 +549,8 @@ public class MinecraftReflection {
/**
* Retrieve the first class that matches a specified Minecraft name.
* @param classes - the specific Minecraft class.
* @param className - the specific Minecraft class.
* @param aliases - alternative names for this Minecraft class.
* @return Class object.
* @throws RuntimeException If we are unable to find any of the given classes.
*/