Skip to content

Commit 86ae4b2

Browse files
committed
remove accidental commits of System.out.println lines
1 parent ad58483 commit 86ae4b2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/org/omnifaces/utils/reflect/Reflections.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,7 @@ private static void collectInterfaceMethods(List<Method> methods, Class<?> iface
188188

189189
private static void collectMethods(List<Method> methods, Class<?> type, boolean iface, String methodName, Object... params) {
190190
for (Method method : type.getDeclaredMethods()) {
191-
System.out.println(type + " --> " + method.getName());
192-
if (method.getName().equals(methodName)) {
193-
System.out.println(" ==> found! --> "+ method.getParameterTypes().length + " == " + params.length);
194-
}
195191
if ((!iface || method.isDefault()) && method.getName().equals(methodName) && method.getParameterTypes().length == params.length && isNotOverridden(methods, method)) {
196-
System.out.println(" ==> added!");
197192
methods.add(method);
198193
}
199194
}

0 commit comments

Comments
 (0)