diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-13 18:20:14 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-13 18:20:14 +0100 |
commit | fb10b185bd1c91d45967a182af22d3e070d5f038 (patch) | |
tree | 6a96de328c2e66ff8c23e4637e271674bbef0421 /test/core/src/lombok/RunTestsViaEcj.java | |
parent | c979ee9ddfe0e990c1527d45c8429397601e4f52 (diff) | |
download | lombok-fb10b185bd1c91d45967a182af22d3e070d5f038.tar.gz lombok-fb10b185bd1c91d45967a182af22d3e070d5f038.tar.bz2 lombok-fb10b185bd1c91d45967a182af22d3e070d5f038.zip |
[testing] also ignore unset positions for the pretty print tester.
Diffstat (limited to 'test/core/src/lombok/RunTestsViaEcj.java')
-rw-r--r-- | test/core/src/lombok/RunTestsViaEcj.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java index 6bcf01f4..7ebc52bb 100644 --- a/test/core/src/lombok/RunTestsViaEcj.java +++ b/test/core/src/lombok/RunTestsViaEcj.java @@ -109,7 +109,7 @@ public class RunTestsViaEcj extends AbstractRunTests { } @Override - public boolean transformCode(Collection<CompilerMessage> messages, StringWriter result, File file, String encoding, Map<String, String> formatPreferences, int minVersion, boolean idempotentCheck) throws Throwable { + public boolean transformCode(Collection<CompilerMessage> messages, StringWriter result, File file, String encoding, Map<String, String> formatPreferences, int minVersion, boolean checkPositions) throws Throwable { final AtomicReference<CompilationResult> compilationResult_ = new AtomicReference<CompilationResult>(); final AtomicReference<CompilationUnitDeclaration> compilationUnit_ = new AtomicReference<CompilationUnitDeclaration>(); ICompilerRequestor bitbucketRequestor = new ICompilerRequestor() { |