Browse Source

Remove debug!

tags/V1_6_12
aclement 12 years ago
parent
commit
c1994e5b98

+ 0
- 9
loadtime/src/org/aspectj/weaver/loadtime/ConcreteAspectCodeGen.java View File

*******************************************************************************/ *******************************************************************************/
package org.aspectj.weaver.loadtime; package org.aspectj.weaver.loadtime;


import java.io.FileOutputStream;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
((BcelWorld) world).addSourceObjectType(jc, true); ((BcelWorld) world).addSourceObjectType(jc, true);


bytes = jc.getBytes(); bytes = jc.getBytes();
try {
FileOutputStream fos = new FileOutputStream("/Users/aclement/foo.class");
fos.write(bytes);
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
return bytes; return bytes;
} }



Loading…
Cancel
Save