aboutsummaryrefslogtreecommitdiffstats
path: root/asm
diff options
context:
space:
mode:
authormkersten <mkersten>2003-11-23 21:32:30 +0000
committermkersten <mkersten>2003-11-23 21:32:30 +0000
commitbdc79f1b42c11fe2bcaa45bbaa5a063173777d28 (patch)
tree7b379c5640c3dcfb7dbb298c258a57b51d7e95d2 /asm
parentba8786b1a73f96cc4ad5f5bc98637c1566a2d919 (diff)
downloadaspectj-bdc79f1b42c11fe2bcaa45bbaa5a063173777d28.tar.gz
aspectj-bdc79f1b42c11fe2bcaa45bbaa5a063173777d28.zip
Fix for bug#47318: "org.aspectj.asm.IRelationship.Kind.ALL does not contain all kinds"
Diffstat (limited to 'asm')
-rw-r--r--asm/src/org/aspectj/asm/IRelationship.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/src/org/aspectj/asm/IRelationship.java b/asm/src/org/aspectj/asm/IRelationship.java
index 9edb5c0e6..18a11da0e 100644
--- a/asm/src/org/aspectj/asm/IRelationship.java
+++ b/asm/src/org/aspectj/asm/IRelationship.java
@@ -37,7 +37,7 @@ public interface IRelationship extends Serializable {
public static final Kind ADVICE = new Kind("advice");
public static final Kind DECLARE = new Kind("declare");
public static final Kind DECLARE_INTER_TYPE = new Kind("inter-type declaration");
- public static final Kind[] ALL = { ADVICE, DECLARE };
+ public static final Kind[] ALL = { ADVICE, DECLARE, DECLARE_INTER_TYPE };
private final String name;
private Kind(String name) {