Skip to content

Commit 977bbfb

Browse files
authored
Merge pull request #833 from MarkEWaite/suppress-more-spotbugs-warnings
Suppress warnings for spotbugs 4.8.3
2 parents 3051924 + db9c781 commit 977bbfb

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

lib/src/main/java/com/cloudbees/groovy/cps/impl/NotBlock.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public Next receive(Object o) {
3434
return new ContinuationImpl(e, k).then(b, e, cast);
3535
}
3636

37+
@SuppressFBWarnings(value = "SIC_INNER_SHOULD_BE_STATIC", justification = "Too late to fix compatibly.")
3738
class ContinuationImpl extends ContinuationGroup {
3839
final Continuation k;
3940
final Env e;

plugin/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsFlowExecution.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ public class CpsFlowExecution extends FlowExecution implements BlockableResume {
267267
*
268268
* @see #runInCpsVmThread(FutureCallback)
269269
*/
270+
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "TODO clean up")
270271
public transient volatile ListenableFuture<CpsThreadGroup> programPromise;
271272
private transient volatile Collection<ListenableFuture<?>> pickleFutures;
272273

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.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>4.76</version>
7+
<version>4.77</version>
88
<relativePath/>
99
</parent>
1010
<groupId>org.jenkins-ci.plugins.workflow</groupId>

0 commit comments

Comments
 (0)