| author | jjh |
| Mon Jul 28 12:37:52 2008 -0700 (16 months ago) | |
| changeset 481 | f2547e64dc3c |
| parent 480 | 541631112989 |
| child 482 | 8c667d55b79e |
| child 494 | 95ce89bf8cd2 |
--- a/test/com/sun/jdi/MonitorFrameInfo.java Sat Jul 26 20:42:35 2008 -0700+++ b/test/com/sun/jdi/MonitorFrameInfo.java Mon Jul 28 12:37:52 2008 -0700@@ -49,6 +49,7 @@ class MonitorTestTarg {static void foo2() {Object l1 = new Object();synchronized(l1) {+ System.out.println("executing foo2 " + l1);foo3();}}@@ -59,6 +60,7 @@ class MonitorTestTarg {System.out.println("Howdy!");Object l1 = new Object();synchronized(l1) {+ System.out.println("executing main" + l1);foo1();}}