diff options
author | acolyer <acolyer> | 2004-09-08 12:04:49 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-09-08 12:04:49 +0000 |
commit | eca1429e79b3dc55c1f93ffbadb3e50eb9808d9c (patch) | |
tree | d0618572a7c870e847b2d79c855c0a59420f7054 /tests/bugs/ConvertToUnchecked.java | |
parent | 8e4d8980e45ba054e7d8e3e5e7ac3aca940d0758 (diff) | |
download | aspectj-eca1429e79b3dc55c1f93ffbadb3e50eb9808d9c.tar.gz aspectj-eca1429e79b3dc55c1f93ffbadb3e50eb9808d9c.zip |
fix for Bugzilla Bug 72157
declare soft can cause programs with invalid exception behaviour to be generated
Diffstat (limited to 'tests/bugs/ConvertToUnchecked.java')
-rw-r--r-- | tests/bugs/ConvertToUnchecked.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bugs/ConvertToUnchecked.java b/tests/bugs/ConvertToUnchecked.java index eb71e9f7b..966bc69d3 100644 --- a/tests/bugs/ConvertToUnchecked.java +++ b/tests/bugs/ConvertToUnchecked.java @@ -35,7 +35,7 @@ class PersistenceException extends RuntimeException class Root { - Root(String s) throws IOException { + Root(String s) /*throws IOException*/ { } } |