Skip to content

Commit d2dc034

Browse files
committed
made public API actually public :/
1 parent 3ec8fad commit d2dc034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/bbottema/javareflection/BeanUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static boolean isBeanMethod(final Method method, final Class<?> boundaryM
116116
/**
117117
* @return Same as {@link #isBeanMethod(Method, Class, EnumSet)}, but may consider methods declared on interfaces as well.
118118
*/
119-
private static boolean isBeanMethod(Method method, Class<?> boundaryMarker,
119+
public static boolean isBeanMethod(Method method, Class<?> boundaryMarker,
120120
EnumSet<Visibility> visibility, boolean checkBeanLikeForInterfaces) {
121121
return method.getDeclaringClass().isInterface()
122122
? checkBeanLikeForInterfaces && methodIsBeanlike(method)

0 commit comments

Comments
 (0)