From cfb78d482a1a7887e82903a35a7b076702235d1f Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 20 Oct 2013 11:45:00 +0200 Subject: [PATCH] Fix up documentation of VersionCheckHandler - it only ever accepted a String and only works on the NetworkMod annotated class --- fml/common/cpw/mods/fml/common/network/NetworkMod.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fml/common/cpw/mods/fml/common/network/NetworkMod.java b/fml/common/cpw/mods/fml/common/network/NetworkMod.java index e8b7c0b78..fb3308ccb 100644 --- a/fml/common/cpw/mods/fml/common/network/NetworkMod.java +++ b/fml/common/cpw/mods/fml/common/network/NetworkMod.java @@ -75,8 +75,9 @@ public @interface NetworkMod /** * A marker for a method that will be offered the client's version string * if more sophisticated version rejection handling is required: - * The method should accept a "String", a "NetworkManager" and return a boolean true + * The method should accept a "String" (the version) and return a boolean true * if the version can be accepted. + * It can only be applied to the {@link NetworkMod} annotated class. * @author cpw * */