aboutsummaryrefslogtreecommitdiffstats
path: root/tests/design/reflect/Coverage.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/design/reflect/Coverage.java')
-rw-r--r--tests/design/reflect/Coverage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/design/reflect/Coverage.java b/tests/design/reflect/Coverage.java
index 7de997909..d0e58255b 100644
--- a/tests/design/reflect/Coverage.java
+++ b/tests/design/reflect/Coverage.java
@@ -179,9 +179,9 @@ aspect JoinPoints extends Helper {
Throwable t = null;
try {
t = (Throwable)jp.getArgs()[0];
- } catch (ArrayIndexOutOfBoundsException _) {
+ } catch (ArrayIndexOutOfBoundsException _x) {
a("handlers out of bounds");
- } catch (ClassCastException __) {
+ } catch (ClassCastException __x) {
a(ni(jp.getArgs()[0], Throwable.class, "handlers"));
}
a(t.getMessage(), "test");