add method name helper method

This commit is contained in:
Tueem 2024-12-19 20:04:53 +01:00
parent 6b86e9ff87
commit 83ee4b1efa
Signed by: tueem
GPG Key ID: F2CE0513D231AD7A

View File

@ -100,4 +100,8 @@ public final class ReflectionUtil {
}
return true;
}
public static String getFullMethodName(Method method) {
return method.getClass().getName() + "." + method.getName();
}
}