From e5860edabe31f3b6ceabd91f9cbcadf3d4d0315a Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sun, 1 Feb 2015 06:52:52 +0100 Subject: Fixed issues with val in inner classes, and re-enabled a test that caught it that we ignored earlier. --- test/core/src/lombok/LombokTestSource.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/core/src') diff --git a/test/core/src/lombok/LombokTestSource.java b/test/core/src/lombok/LombokTestSource.java index 9b5607ef..c686bf19 100644 --- a/test/core/src/lombok/LombokTestSource.java +++ b/test/core/src/lombok/LombokTestSource.java @@ -183,6 +183,8 @@ public class LombokTestSource { continue; } + if (lc.startsWith("issue ")) continue; + Assert.fail("Directive line \"" + directive + "\" in '" + file.getAbsolutePath() + "' invalid: unrecognized directive."); throw new RuntimeException(); } -- cgit