Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
dwnusbaum committed Aug 22, 2024
1 parent b5fe744 commit 3c7bc62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/hudson/tasks/junit/SuiteResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ static void parseEnclosingBlockNames(SuiteResult r, final XMLStreamReader reader
}
}

static void parseCases(SuiteResult r, final XMLStreamReader reader, String context, String ver) throws XMLStreamException {
static void parseCases(SuiteResult r, final XMLStreamReader reader, String context, String ver)
throws XMLStreamException {
while (reader.hasNext()) {
final int event = reader.next();
if (event == XMLStreamReader.END_ELEMENT && reader.getLocalName().equals("cases")) {
Expand Down

0 comments on commit 3c7bc62

Please sign in to comment.