Archiviert
13
0

Fixed a couple of mistakes in the JavaDoc.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2013-01-22 13:33:24 +01:00
Ursprung c6d896d717
Commit 74ecb14a33
3 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -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()

Datei anzeigen

@ -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
*/

Datei anzeigen

@ -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.
*/