Skip to content

Commit 2767e20

Browse files
Bump org.jenkins-ci.plugins:plugin from 5.26 to 5.28 (#386)
* Bump org.jenkins-ci.plugins:plugin from 5.26 to 5.28 Bumps [org.jenkins-ci.plugins:plugin](https://github.com/jenkinsci/plugin-pom) from 5.26 to 5.28. - [Release notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](jenkinsci/plugin-pom@plugin-5.26...plugin-5.28) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:plugin dependency-version: '5.28' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Format with spotless --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mark Waite <mark.earl.waite@gmail.com>
1 parent a0b74df commit 2767e20

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>5.26</version>
8+
<version>5.28</version>
99
<relativePath />
1010
</parent>
1111

src/main/java/hudson/plugins/testng/parser/ResultsParser.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public TestNGResult parse(FilePath[] paths) {
226226
currentCDATAParent = TAGS.FULL_STACKTRACE;
227227
break;
228228
default:
229-
// TODO: log ignored tags
229+
// TODO: log ignored tags
230230
}
231231
break;
232232
case XmlPullParser.END_TAG: // all closing tags
@@ -269,14 +269,14 @@ public TestNGResult parse(FilePath[] paths) {
269269
currentCDATAParent = TAGS.UNKNOWN;
270270
break;
271271
default:
272-
// TODO: log ignored tags
272+
// TODO: log ignored tags
273273
}
274274
break;
275275
case XmlPullParser.CDSECT: // all cdata reading
276276
handleCDATA();
277277
break;
278278
default:
279-
// ignore others
279+
// ignore others
280280
}
281281
}
282282
finalResults.addUniqueTests(testList);
@@ -409,7 +409,7 @@ private void handleCDATA() {
409409
currentLine = xmlPullParser.getText();
410410
break;
411411
case UNKNOWN:
412-
// do nothing
412+
// do nothing
413413
}
414414
}
415415

0 commit comments

Comments
 (0)