From 31ea749984122e4eb76adafb91b3c4bd3cf96d6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Mar 2025 19:41:11 +0000 Subject: [PATCH 1/2] Bump org.jenkins-ci.plugins:plugin from 5.5 to 5.9 Bumps [org.jenkins-ci.plugins:plugin](https://github.com/jenkinsci/plugin-pom) from 5.5 to 5.9. - [Release notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-5.5...plugin-5.9) --- updated-dependencies: - dependency-name: org.jenkins-ci.plugins:plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dd6071f0..db400328 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ org.jenkins-ci.plugins plugin - 5.5 + 5.9 org.jenkins-ci.plugins.workflow From 4ab43ee546e47ad215b3c17a250ae1ca538f7063 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 25 Mar 2025 15:43:21 -0400 Subject: [PATCH 2/2] Removing annotation --- .../java/org/jenkinsci/plugins/workflow/log/FileLogStorage.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/jenkinsci/plugins/workflow/log/FileLogStorage.java b/src/main/java/org/jenkinsci/plugins/workflow/log/FileLogStorage.java index a4d7ae9a..eacd9bbe 100644 --- a/src/main/java/org/jenkinsci/plugins/workflow/log/FileLogStorage.java +++ b/src/main/java/org/jenkinsci/plugins/workflow/log/FileLogStorage.java @@ -75,7 +75,6 @@ public static synchronized LogStorage forFile(File log) { private final File log; private final File index; - @SuppressFBWarnings(value = "IS2_INCONSISTENT_SYNC", justification = "actually it is always accessed within the monitor") private FileOutputStream os; @SuppressFBWarnings(value = "IS2_INCONSISTENT_SYNC", justification = "actually it is always accessed within the monitor") private long osStartPosition;