diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-10-21 13:19:19 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-10-21 13:19:19 -0700 |
commit | 0df90e175b316d5a8e6189c2d89725cd8afd7bd3 (patch) | |
tree | 0e6a7c8b5d41ed4d0e44eb2f4a61a08653ee02a2 /weaver/src | |
parent | dddd1236cd21982a07f887ff7fa5d484ebc3b86c (diff) | |
download | aspectj-0df90e175b316d5a8e6189c2d89725cd8afd7bd3.tar.gz aspectj-0df90e175b316d5a8e6189c2d89725cd8afd7bd3.zip |
Support for @RequiredTypes and abstract aspects
Diffstat (limited to 'weaver/src')
-rw-r--r-- | weaver/src/org/aspectj/weaver/ltw/LTWWorld.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java b/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java index eff7a5999..49185a2fb 100644 --- a/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java +++ b/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java @@ -176,8 +176,8 @@ public class LTWWorld extends BcelWorld implements IReflectionWorld { if (concurrentMapClass != null) { try { return (Map) concurrentMapClass.newInstance(); - } catch (InstantiationException _) { - } catch (IllegalAccessException _) { + } catch (InstantiationException ie) { + } catch (IllegalAccessException iae) { } // fall through if exceptions } @@ -191,9 +191,9 @@ public class LTWWorld extends BcelWorld implements IReflectionWorld { for (int i = 0; i < betterChoices.length; i++) { try { return Class.forName(betterChoices[i]); - } catch (ClassNotFoundException _) { + } catch (ClassNotFoundException cnfe) { // try the next one - } catch (SecurityException _) { + } catch (SecurityException se) { // you get one of these if you dare to try to load an undefined class in a // package starting with java like java.util.concurrent } |