# HG changeset patch # User Paul Boddie # Date 1100103093 -3600 # Node ID fe245dbbb3f1a2347ed50ef7dc165cb648751aa3 # Parent 7121c7af1076f277890c00a752b4838fbd9aac07 Made the results of various tests more suggestive. diff -r 7121c7af1076 -r fe245dbbb3f1 tests/ExceptionTest.java --- a/tests/ExceptionTest.java Wed Nov 10 16:50:43 2004 +0100 +++ b/tests/ExceptionTest.java Wed Nov 10 17:11:33 2004 +0100 @@ -48,8 +48,9 @@ x = 2; throw new MyOtherException(); } + x = 1; } finally { - x = 1; + x += 10; } return x; } @@ -61,12 +62,13 @@ } else if (x == 1) { throw new MyOtherException(); } + x = 1; } catch (MyException exc) { x = 3; } catch (MyOtherException exc) { x = 2; } finally { - x = 1; + x += 10; } return x; }