Browse Source

move to Eclipse 3.0 M6 JDT core (v_396). Also makes 1.4 the

default mode (inherited behaviour from JDT).

this fixes a long-standing bug for matching fields and 
static methods revealed by move to 1.4 default
tags/v_preCompileLoopAlteration
acolyer 20 years ago
parent
commit
009389ac64
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      weaver/src/org/aspectj/weaver/Member.java

+ 1
- 1
weaver/src/org/aspectj/weaver/Member.java View File

@@ -512,7 +512,7 @@ public class Member implements Comparable {
} else {
boolean b = false;
for (Iterator i = curr.getDirectSupertypes(); i.hasNext(); ) {
b |= walkUp(acc, (ResolvedTypeX)i.next());
b |= walkUpStatic(acc, (ResolvedTypeX)i.next());
}
if (b) acc.add(curr);
return b;

Loading…
Cancel
Save