Skip to content

Commit 01a80d0

Browse files
Fix spotbugs
1 parent eefac84 commit 01a80d0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/test/java/org/creekservice/kafka/test/perf/implementations/ImplementationTest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import static org.junit.jupiter.api.Assertions.assertThrows;
2323
import static org.junit.jupiter.api.Assumptions.assumeFalse;
2424

25-
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
2625
import java.math.BigDecimal;
2726
import java.net.URI;
2827
import java.nio.charset.StandardCharsets;
@@ -91,7 +90,6 @@ void shouldNotThrowPreparingValidSchema(final String shortName, final Implementa
9190
// Then: did not throw.
9291
}
9392

94-
@SuppressFBWarnings("RV_EXCEPTION_NOT_THROWN")
9593
@ParameterizedTest(name = "{0}")
9694
@MethodSource("implementations")
9795
void shouldThrowValidatingInvalidJson(final String shortName, final Implementation impl) {
@@ -131,7 +129,6 @@ void shouldNotThrowValidatingValidJson(final String shortName, final Implementat
131129
// Then: did not throw.
132130
}
133131

134-
@SuppressFBWarnings("RV_EXCEPTION_NOT_THROWN")
135132
@ParameterizedTest(name = "{0}")
136133
@MethodSource("implementations")
137134
void shouldHandleRemoteSchemas(final String shortName, final Implementation impl) {
@@ -168,7 +165,6 @@ void shouldRoundTrip(final String shortName, final Implementation impl) {
168165
assertThat(result, is(ModelState.TEST_MODEL));
169166
}
170167

171-
@SuppressFBWarnings("RV_EXCEPTION_NOT_THROWN")
172168
@ParameterizedTest(name = "{0}")
173169
@MethodSource("implementations")
174170
void shouldValidateOnSerialize(final String shortName, final Implementation impl) {
@@ -197,7 +193,6 @@ void shouldNotValidateOnSerialize(final String shortName, final Implementation i
197193
// Then: did not throw.
198194
}
199195

200-
@SuppressFBWarnings("RV_EXCEPTION_NOT_THROWN")
201196
@ParameterizedTest(name = "{0}")
202197
@MethodSource("implementations")
203198
void shouldValidateOnDeserialize(final String shortName, final Implementation impl) {

0 commit comments

Comments
 (0)