diff options
author | aclement <aclement> | 2008-06-03 05:40:38 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-06-03 05:40:38 +0000 |
commit | 4b7550584f45d6be577e54f59563bbeb7093040d (patch) | |
tree | 7a5f523b307072b48efcf0ef32780678d17266b0 /weaver | |
parent | 0a38e35bc83f2077828e1c67306a8cd89b5e078d (diff) | |
download | aspectj-4b7550584f45d6be577e54f59563bbeb7093040d.tar.gz aspectj-4b7550584f45d6be577e54f59563bbeb7093040d.zip |
optimize tag
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/ResolvedType.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/weaver/src/org/aspectj/weaver/ResolvedType.java b/weaver/src/org/aspectj/weaver/ResolvedType.java index 883cf9450..c1e5f7664 100644 --- a/weaver/src/org/aspectj/weaver/ResolvedType.java +++ b/weaver/src/org/aspectj/weaver/ResolvedType.java @@ -828,6 +828,8 @@ public abstract class ResolvedType extends UnresolvedType implements AnnotatedEl public static final Missing MISSING = new Missing(); /** Reset the static state in the primitive types */ + // OPTIMIZE I think we have a bug here because primitives are static and the world they use may vary (or may even be + // null) public static void resetPrimitives() { BYTE.world=null; CHAR.world=null; |