diff -r af6eda86177e -r c67ddf10398e jdk/test/com/sun/jdi/RedefineFinal.sh --- a/jdk/test/com/sun/jdi/RedefineFinal.sh Wed Mar 05 15:43:18 2014 +0100 +++ b/jdk/test/com/sun/jdi/RedefineFinal.sh Wed Mar 05 16:55:38 2014 +0100 @@ -42,15 +42,15 @@ public final class $1 { public int m1(int i) { - // @1 uncomment System.out.println("I'm here"); - return m2(i, 1000); + // @1 uncomment System.out.println("I'm here"); + return m2(i, 1000); } public int m2(int i, int j) { - if (i < 0 || j < 0) { // @1 breakpoint + if (i < 0 || j < 0) { // @1 breakpoint throw new IllegalArgumentException(); - } - return i+j; + } + return i+j; } $1() { @@ -59,7 +59,7 @@ } public static void main(String args[]) { - new $1(); + new $1(); } } EOF