Browse Source

258325: refix

tags/V1_6_3rc1
aclement 15 years ago
parent
commit
711244d4b3

+ 3
- 3
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjBuildManager.java View File

@@ -1077,12 +1077,12 @@ public class AjBuildManager implements IOutputClassFileNameProvider, IBinarySour
} else {
outFile = new File(destinationPath, filename).getPath();
}
if (buildConfig.getCompilationResultDestinationManager() != null) {
buildConfig.getCompilationResultDestinationManager().reportClassFileWrite(outFile);
}
BufferedOutputStream os = FileUtil.makeOutputStream(new File(outFile));
os.write(classFile.getBytes());
os.close();
if (buildConfig.getCompilationResultDestinationManager() != null) {
buildConfig.getCompilationResultDestinationManager().reportClassFileWrite(outFile);
}
return outFile;
}


Loading…
Cancel
Save