Skip to content

Commit f5112bd

Browse files
committed
fix: rm debug print
1 parent 8eeabcd commit f5112bd

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

generator/src/main/java/com/reajason/javaweb/memshell/injector/tomcat/TomcatListenerInjector.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ public static Object invokeMethod(Object obj, String methodName, Class<?>[] para
195195
}
196196

197197
method.setAccessible(true);
198-
System.out.println(method.getDeclaringClass().getName() + "@" + String.valueOf(obj.hashCode()).substring(0, 4) + "." + methodName + " invoked");
199198
return method.invoke(obj instanceof Class ? null : obj, param);
200199
} catch (Exception e) {
201200
throw new RuntimeException("Error invoking method: " + methodName, e);

0 commit comments

Comments
 (0)