From cd970993e80b57eceabc7a8d66805d48038e99ec Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 2 Oct 2018 04:01:48 +0200 Subject: [buildscript] addition of a test task that runs faster; don’t use it unless you know what you’re doing as it skips a few important steps. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/core/src/lombok/AbstractRunTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/core/src') diff --git a/test/core/src/lombok/AbstractRunTests.java b/test/core/src/lombok/AbstractRunTests.java index f93fbe27..fc05aea2 100644 --- a/test/core/src/lombok/AbstractRunTests.java +++ b/test/core/src/lombok/AbstractRunTests.java @@ -197,7 +197,7 @@ public abstract class AbstractRunTests { } } - @SuppressWarnings("null") /* eclipse bug; it falsely thinks stuffAc will always be null or some such hogwash. */ + @SuppressWarnings("null") /* eclipse bug workaround; it falsely thinks stuffAc will always be null. */ private static void compareMessages(String name, LombokImmutableList expected, LinkedHashSet actual) { Iterator expectedIterator = expected.iterator(); Iterator actualIterator = actual.iterator(); -- cgit