]> source.dussan.org Git - aspectj.git/commitdiff
corrected to 377096!
authorAndy Clement <andrew.clement@gmail.com>
Mon, 28 Jan 2013 22:03:09 +0000 (14:03 -0800)
committerAndy Clement <andrew.clement@gmail.com>
Mon, 28 Jan 2013 22:03:09 +0000 (14:03 -0800)
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java

index 6cf7d2712e3946720879f85127cddb3fd488f05d..6cc02249c2fe3b5e7bdd9f9930c6d01970e318e6 100644 (file)
@@ -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();