summaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2013-01-28 14:03:09 -0800
committerAndy Clement <andrew.clement@gmail.com>2013-01-28 14:03:09 -0800
commit59b8e77965f0b92d869b803706386d7c22aeb94c (patch)
tree47ded49f29de54e06d9e556d0b421034540af5f4 /org.aspectj.ajdt.core
parent538ab026d392dfc778cacc1fa848bb9ce62db055 (diff)
downloadaspectj-59b8e77965f0b92d869b803706386d7c22aeb94c.tar.gz
aspectj-59b8e77965f0b92d869b803706386d7c22aeb94c.zip
corrected to 377096!
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
index 6cf7d2712..6cc02249c 100644
--- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
+++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
@@ -1500,13 +1500,13 @@ public class AjState implements CompilerConfigurationChangeFlags, TypeDelegateRe
reader, isAspect));
} catch (ClassFormatException cfe) {
try {
- String s = System.getProperty("aspectj.debug377906","false");
+ String s = System.getProperty("aspectj.debug377096","false");
if (s.equalsIgnoreCase("true")) {
String location = System.getProperty("java.io.tmpdir","/tmp");
String name = thisTime.getClassName();
File f = File.createTempFile(location+File.separator+name, ".class");
StringBuilder debug = new StringBuilder();
- debug.append("Debug377906: Dumping class called "+name+" to "+f.getName()+" size:"+thisTime.getBytes().length);
+ debug.append("Debug377096: Dumping class called "+name+" to "+f.getName()+" size:"+thisTime.getBytes().length);
DataOutputStream dos = new DataOutputStream(new FileOutputStream(f));
dos.write(thisTime.getBytes());
dos.close();