aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2013-04-01 14:34:25 -0700
committerAndy Clement <andrew.clement@gmail.com>2013-04-01 14:34:25 -0700
commit99414d4203fc52b93dfa8ecb69211766609137ad (patch)
tree22f560022a2bd577bef7b2bc9c07cebf1c2ec0a1 /weaver
parent1afe1016d04389da4918b3d91f0d8125183dd040 (diff)
downloadaspectj-99414d4203fc52b93dfa8ecb69211766609137ad.tar.gz
aspectj-99414d4203fc52b93dfa8ecb69211766609137ad.zip
Fix for 404601
Added 1.7.3 test suite
Diffstat (limited to 'weaver')
-rw-r--r--weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java b/weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
index adc1e8a84..1a1b81f54 100644
--- a/weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
+++ b/weaver/src/org/aspectj/weaver/bcel/BcelTypeMunger.java
@@ -944,8 +944,7 @@ public class BcelTypeMunger extends ConcreteTypeMunger {
}
}
- // If it doesn't target an interface and there is a body (i.e. it
- // isnt abstract)
+ // If it doesn't target an interface and there is a body (i.e. it isnt abstract)
if (!onInterface && !Modifier.isAbstract(mangledInterMethod.getModifiers())) {
InstructionList body = newMethod.getBody();
InstructionFactory fact = classGen.getFactory();