diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-11-17 02:15:26 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-11-17 02:15:26 +0100 |
commit | 0e34eec7668ee060fe65133243009dbb27e7c251 (patch) | |
tree | 598bd583cba8a5bdc289c08010bfd86828f3d062 /test/core/src/lombok/RunTestsViaEcj.java | |
parent | b8a222006da0a535134c5e7e94282550bfe745b6 (diff) | |
parent | 8a504f8beec691b64d1c08f629520c2443821847 (diff) | |
download | lombok-0e34eec7668ee060fe65133243009dbb27e7c251.tar.gz lombok-0e34eec7668ee060fe65133243009dbb27e7c251.tar.bz2 lombok-0e34eec7668ee060fe65133243009dbb27e7c251.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'test/core/src/lombok/RunTestsViaEcj.java')
-rw-r--r-- | test/core/src/lombok/RunTestsViaEcj.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java index 272ed8b7..75200223 100644 --- a/test/core/src/lombok/RunTestsViaEcj.java +++ b/test/core/src/lombok/RunTestsViaEcj.java @@ -93,7 +93,7 @@ public class RunTestsViaEcj extends AbstractRunTests { } @Override - public void transformCode(Collection<CompilerMessage> messages, StringWriter result, File file, String encoding, Map<String, String> formatPreferences) throws Throwable { + public boolean transformCode(Collection<CompilerMessage> messages, StringWriter result, File file, String encoding, Map<String, String> formatPreferences) throws Throwable { final AtomicReference<CompilationResult> compilationResult_ = new AtomicReference<CompilationResult>(); final AtomicReference<CompilationUnitDeclaration> compilationUnit_ = new AtomicReference<CompilationUnitDeclaration>(); ICompilerRequestor bitbucketRequestor = new ICompilerRequestor() { @@ -125,6 +125,8 @@ public class RunTestsViaEcj extends AbstractRunTests { if (cud == null) result.append("---- NO CompilationUnit provided by ecj ----"); else result.append(cud.toString()); + + return true; } private FileSystem createFileSystem(File file) { |