diff options
author | ehilsdal <ehilsdal> | 2004-02-04 04:05:41 +0000 |
---|---|---|
committer | ehilsdal <ehilsdal> | 2004-02-04 04:05:41 +0000 |
commit | 481165a816d3209bed1b07b996a3b8f043140fd4 (patch) | |
tree | 9a9be1dc52ba2eda8c347b276ed237311c58cb13 /weaver/testsrc | |
parent | e78f02d84c55ab081744723e821e4031e1635246 (diff) | |
download | aspectj-481165a816d3209bed1b07b996a3b8f043140fd4.tar.gz aspectj-481165a816d3209bed1b07b996a3b8f043140fd4.zip |
made JDK 1.3 compatible
Diffstat (limited to 'weaver/testsrc')
-rw-r--r-- | weaver/testsrc/LocaleTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weaver/testsrc/LocaleTest.java b/weaver/testsrc/LocaleTest.java index 1dba3f79f..3f4105569 100644 --- a/weaver/testsrc/LocaleTest.java +++ b/weaver/testsrc/LocaleTest.java @@ -18,7 +18,7 @@ public class LocaleTest extends TestCase { public void testTurkishLocale() { Locale def = Locale.getDefault(); - Locale.setDefault(new Locale("tr")); + Locale.setDefault(new Locale("tr", "")); try { doBipush(); } finally { @@ -34,7 +34,7 @@ public class LocaleTest extends TestCase { (byte) 3 // data for bipush })); } catch (IOException e) { - throw new RuntimeException(e); + throw new RuntimeException(e.getMessage()); } } } |