Skip to content

Commit

Permalink
Fix jcheck errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
plummercj committed Aug 28, 2024
1 parent 71b003d commit 0ac3304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jdk/com/sun/jdi/ReattachStressTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ private static void tryDebug(long pid, InputStream is) throws IOException,
while (is.available() > 0) {
is.read();
}

// We've attached. Do some things that will send JDWP commands.
System.out.println("Attached!");
System.out.println("JVM name: " + vm.name());
System.out.println("Num threads: " + vm.allThreads().size());

// We're all done with this debugger connection.
vm.dispose();

Expand Down

0 comments on commit 0ac3304

Please sign in to comment.