Skip to content

Commit e2f197c

Browse files
Bump org.jenkins-ci:jenkins from 1.128 to 1.130 (#428)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 178cdc6 commit e2f197c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jenkins-ci</groupId>
66
<artifactId>jenkins</artifactId>
7-
<version>1.128</version>
7+
<version>1.130</version>
88
<relativePath />
99
</parent>
1010

src/main/java/winstone/Launcher.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,7 @@ public class Launcher implements Runnable {
8383
* Constructor - initialises the web app, object pools, control port and the
8484
* available protocol listeners.
8585
*/
86-
@SuppressFBWarnings(
87-
value = {"DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED", "LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE"},
88-
justification = "cf. https://github.com/spotbugs/spotbugs/issues/1515")
86+
@SuppressFBWarnings(value = "LG_LOST_LOGGER_DUE_TO_WEAK_REFERENCE", justification = "TODO needs triage")
8987
public Launcher(Map<String, String> args) throws IOException {
9088
boolean success = false;
9189
/*
@@ -517,9 +515,6 @@ public static Map<String, String> getArgsFromCommandLine(String[] argv) throws I
517515
return args;
518516
}
519517

520-
@SuppressFBWarnings(
521-
value = {"NP_LOAD_OF_KNOWN_NULL_VALUE", "RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE"},
522-
justification = "false positive https://github.com/spotbugs/spotbugs/issues/1338")
523518
protected static void deployEmbeddedWarfile(Map<String, String> args) throws IOException {
524519
String embeddedWarfileName = RESOURCES.getString("Launcher.EmbeddedWarFile");
525520
try (InputStream embeddedWarfile = Launcher.class.getResourceAsStream(embeddedWarfileName)) {

0 commit comments

Comments
 (0)