From d2d97539d26f6023ffc4565286f08427c4e8b41c Mon Sep 17 00:00:00 2001
From: Rawi01 <Rawi01@users.noreply.github.com>
Date: Mon, 8 Nov 2021 14:39:53 +0100
Subject: Add support for eclipse feature tests

---
 test/core/src/lombok/RunTestsViaEcj.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'test/core/src')

diff --git a/test/core/src/lombok/RunTestsViaEcj.java b/test/core/src/lombok/RunTestsViaEcj.java
index 60a6e92a..8de9cd9c 100644
--- a/test/core/src/lombok/RunTestsViaEcj.java
+++ b/test/core/src/lombok/RunTestsViaEcj.java
@@ -289,6 +289,10 @@ public class RunTestsViaEcj extends AbstractRunTests {
 		@Override public char[][] getPackageName() {
 			return null;
 		}
+
+		@Override public boolean ignoreOptionalProblems() {
+			return false;
+		}
 	}
 	
 	private static final class TestCompilationUnitEclipse extends org.eclipse.jdt.internal.core.CompilationUnit {
@@ -324,7 +328,7 @@ public class RunTestsViaEcj extends AbstractRunTests {
 			return null;
 		}
 		
-		@Override public char[] getModuleName() {
+		public char[] getModuleName() {
 			return null;
 		}
 	}
-- 
cgit