aboutsummaryrefslogtreecommitdiff
path: root/test/core/src/lombok
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-08-20 23:44:31 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-08-21 00:02:12 +0200
commit35fe755b87f194621b5f328e4773f1f406f8ccc9 (patch)
treeed3ac873cbb0bb61bc26f56bbe57b556f9cc638d /test/core/src/lombok
parent52ffd6e1e7c7728f039d6a7121ddb7f48e07b08c (diff)
downloadlombok-35fe755b87f194621b5f328e4773f1f406f8ccc9.tar.gz
lombok-35fe755b87f194621b5f328e4773f1f406f8ccc9.tar.bz2
lombok-35fe755b87f194621b5f328e4773f1f406f8ccc9.zip
bugfix for the new ‘find the next priority’ system committed earlier; it should also find next priority for the astvisitors (only the annotation visitors were being considered).
Diffstat (limited to 'test/core/src/lombok')
-rw-r--r--test/core/src/lombok/RunTestsViaEcj.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java
index 4e6a6a55..3efe38f5 100644
--- a/test/core/src/lombok/RunTestsViaEcj.java
+++ b/test/core/src/lombok/RunTestsViaEcj.java
@@ -122,7 +122,7 @@ public class RunTestsViaEcj extends AbstractRunTests {
CompilationUnitDeclaration cud = compilationUnit_.get();
- if (cud == null) result.append("---- NO CompilationUnit provided by ecj ----");
+ if (cud == null) result.append("---- No CompilationUnit provided by ecj ----");
else result.append(cud.toString());
return true;