Browse Source

refactoring

tags/V1_6_12M1
aclement 13 years ago
parent
commit
a9e14de361
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      org.aspectj.matcher/src/org/aspectj/weaver/Shadow.java

+ 1
- 2
org.aspectj.matcher/src/org/aspectj/weaver/Shadow.java View File

/** Actually implement the (non-empty) mungers associated with this shadow */ /** Actually implement the (non-empty) mungers associated with this shadow */
private void implementMungers() { private void implementMungers() {
World world = getIWorld(); World world = getIWorld();
for (Iterator iter = mungers.iterator(); iter.hasNext();) {
ShadowMunger munger = (ShadowMunger) iter.next();
for (ShadowMunger munger: mungers) {
if (munger.implementOn(this)) { if (munger.implementOn(this)) {
world.reportMatch(munger, this); world.reportMatch(munger, this);
} }

Loading…
Cancel
Save