From 50019a4f94c91286f3b36e72b8afa84269d926ca Mon Sep 17 00:00:00 2001 From: Tschipp Date: Thu, 23 Dec 2021 17:20:29 +0100 Subject: [PATCH] fixed javadoc --- .../tschipp/carryon/common/helper/ReflectionUtil.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/tschipp/carryon/common/helper/ReflectionUtil.java b/src/main/java/tschipp/carryon/common/helper/ReflectionUtil.java index 88f93d6..d53d31d 100644 --- a/src/main/java/tschipp/carryon/common/helper/ReflectionUtil.java +++ b/src/main/java/tschipp/carryon/common/helper/ReflectionUtil.java @@ -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 - * The class * @return The MethodHandle */ public static MethodHandle findMethod(final Class clazz, final String methodName, @Nullable final String methodObfName, final Class... parameterTypes)