Skip to content

Commit

Permalink
Remove accidental debug output from test (#9567)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck authored Aug 7, 2024
1 parent 76763d6 commit d9b05bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/src/test/java/jenkins/security/Security3430Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ public Exploit(URL controllerFilePath, String expectedContent) {
@Override
public Void call() throws Exception {
final ClassLoader ccl = Thread.currentThread().getContextClassLoader();
System.err.println(ccl.getClass().getName());
final Field classLoaderProxyField = ccl.getClass().getDeclaredField("proxy");
classLoaderProxyField.setAccessible(true);
final Object theProxy = classLoaderProxyField.get(ccl);
Expand Down

0 comments on commit d9b05bf

Please sign in to comment.