diff options
author | aclement <aclement> | 2006-10-03 07:44:51 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-03 07:44:51 +0000 |
commit | e8959972193b4f74b173daca878f4af77089ccb8 (patch) | |
tree | af3849afabd27459c1812cd18b75b65e70d94081 /weaver | |
parent | ffc92dd6db1ac49de4f6396ff0e38834c7344cde (diff) | |
download | aspectj-e8959972193b4f74b173daca878f4af77089ccb8.tar.gz aspectj-e8959972193b4f74b173daca878f4af77089ccb8.zip |
turning off completeBinaryTypes
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/World.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/weaver/src/org/aspectj/weaver/World.java b/weaver/src/org/aspectj/weaver/World.java index 56d65a0c3..b692500c7 100644 --- a/weaver/src/org/aspectj/weaver/World.java +++ b/weaver/src/org/aspectj/weaver/World.java @@ -109,7 +109,7 @@ public abstract class World implements Dump.INode { private boolean fastDelegateSupportEnabled = isASMAround; private boolean runMinimalMemory = false; private boolean shouldPipelineCompilation = true; - private boolean completeBinaryTypes = true; + private boolean completeBinaryTypes = false; public boolean forDEBUG_structuralChangesCode = false; public boolean forDEBUG_bridgingCode = false; @@ -787,7 +787,7 @@ public abstract class World implements Dump.INode { public final static String xsetPIPELINE_COMPILATION = "pipelineCompilation"; public final static String xsetPIPELINE_COMPILATION_DEFAULT = "true"; public final static String xsetCOMPLETE_BINARY_TYPES = "completeBinaryTypes"; - public final static String xsetCOMPLETE_BINARY_TYPES_DEFAULT = "true"; + public final static String xsetCOMPLETE_BINARY_TYPES_DEFAULT = "false"; public boolean isInJava5Mode() { return behaveInJava5Way; @@ -1177,8 +1177,8 @@ public abstract class World implements Dump.INode { s = p.getProperty(xsetCOMPLETE_BINARY_TYPES,xsetCOMPLETE_BINARY_TYPES_DEFAULT); completeBinaryTypes = s.equalsIgnoreCase("true"); - if (!completeBinaryTypes) { - getMessageHandler().handleMessage(MessageUtil.info("[completeBinaryTypes=false] Completion of binary types deactivated")); + if (completeBinaryTypes) { + getMessageHandler().handleMessage(MessageUtil.info("[completeBinaryTypes=true] Completion of binary types activated")); } s = p.getProperty(xsetRUN_MINIMAL_MEMORY,"false"); |