aherbert commented on a change in pull request #731:
URL: https://github.com/apache/commons-lang/pull/731#discussion_r596251679
##########
File path: src/main/java/org/apache/commons/lang3/ClassUtils.java
##########
@@ -935,6 +935,60 @@ public static boolean isAssignable(Class<?> cls, final
Class<?> toClass, final b
return toClass.isAssignableFrom(cls);
}
+ /**
+ * <p>Check if the given {@code Method} is overridable in the given target
{@code Class}.</p>
+ *
+ * <p>This method returns {@code false} for any {@code null} input or
method with the static or final modifiers.</p>
+ * <pre>
+ * <code>
+ * private static class ABG {
+ * private void privateMethod(){
Review comment:
Add whitespace before the curly brace `{` (to match our coding style)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]