From b07ddc831bf677b03d8253ebdc801d3636ef2e59 Mon Sep 17 00:00:00 2001 From: Ulli Hafner Date: Wed, 8 May 2024 10:37:11 +0200 Subject: [PATCH] Run SpotBugs only once. --- pom.xml | 1 - src/main/java/edu/hm/hafner/util/Ensure.java | 1 - 2 files changed, 2 deletions(-) diff --git a/pom.xml b/pom.xml index f7c3c192..d85bc213 100644 --- a/pom.xml +++ b/pom.xml @@ -758,7 +758,6 @@ run-spotbugs - spotbugs check verify diff --git a/src/main/java/edu/hm/hafner/util/Ensure.java b/src/main/java/edu/hm/hafner/util/Ensure.java index 92e13308..9438f903 100644 --- a/src/main/java/edu/hm/hafner/util/Ensure.java +++ b/src/main/java/edu/hm/hafner/util/Ensure.java @@ -521,7 +521,6 @@ public ObjectCondition(@CheckForNull final T value) { * @param additionalValues * additional values of the condition */ - @SuppressFBWarnings("EI2") @SuppressWarnings("PMD.ArrayIsStoredDirectly") public ObjectCondition(@CheckForNull final T value, @CheckForNull final Object... additionalValues) { this.value = value;