fixed javadoc

This commit is contained in:
Tschipp 2021-12-23 17:20:29 +01:00
parent 6d85b42903
commit 50019a4f94

View File

@ -21,12 +21,12 @@ public class ReflectionUtil
*
* @param clazz
* The class
* @param methodNames
* @param methodName
* The possible names of the method
* @param methodTypes
* @param methodObfName
* The obfuscated method name
* @param parameterTypes
* The argument types of the method
* @param <T>
* The class
* @return The MethodHandle
*/
public static MethodHandle findMethod(final Class<?> clazz, final String methodName, @Nullable final String methodObfName, final Class<?>... parameterTypes)