diff options
author | acolyer <acolyer> | 2006-02-10 17:54:11 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2006-02-10 17:54:11 +0000 |
commit | e51f62e491088a913ec62bbbdbd3eaf967c7de93 (patch) | |
tree | e3fd7ea405f8c3579de588e1d39ffc2d8afb31cb | |
parent | b03d4bb299917983d2c104e818f014e3743f4c17 (diff) | |
download | aspectj-e51f62e491088a913ec62bbbdbd3eaf967c7de93.tar.gz aspectj-e51f62e491088a913ec62bbbdbd3eaf967c7de93.zip |
don't hold onto references to AjBuildConfigs
-rw-r--r-- | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java index 8ea177455..7ca8298a8 100644 --- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java +++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java @@ -80,6 +80,7 @@ public class AsmHierarchyBuilder extends ASTVisitor { stack = new Stack(); this.buildConfig = buildConfig; internalBuild(cuDeclaration, structureModel); + this.buildConfig = null; // clear reference since this structure is anchored in static // throw new RuntimeException("not implemented"); } |