Enable SpringJUnit5 Checkstyle rule

See gh-36496
Closes gh-36496
This commit is contained in:
Sam Brannen
2026-03-18 18:38:43 +01:00
parent 4c14abf0cd
commit 1256307c83
249 changed files with 424 additions and 361 deletions
@@ -57,7 +57,7 @@ public abstract class AbstractMarshallerTests<M extends Marshaller> {
protected Object flights;
@BeforeEach
public final void setUp() throws Exception {
final void setUp() throws Exception {
marshaller = createMarshaller();
flights = createFlights();
}
@@ -59,7 +59,7 @@ public abstract class AbstractUnmarshallerTests<U extends Unmarshaller> {
"<tns:flight><tns:number>42</tns:number></tns:flight></tns:flights>";
@BeforeEach
public final void setUp() throws Exception {
final void setUp() throws Exception {
unmarshaller = createUnmarshaller();
}