Skip to content

Commit

Permalink
fix spotbugs and checkstyle errors part IV
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsymhoven authored and simonsymhoven committed Jun 10, 2022
1 parent 177ab90 commit 6647e0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/io/jenkins/plugins/monitoring/Monitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.google.common.collect.ImmutableSet;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import hudson.Extension;
import hudson.model.Run;
import hudson.model.TaskListener;
Expand Down Expand Up @@ -60,7 +61,7 @@ public StepExecution start(final StepContext stepContext) {
/**
* The {@link Execution} routine for the monitoring step.
*/
@SuppressWarnings("THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION")
@SuppressFBWarnings(value = "THROWS_METHOD_THROWS_CLAUSE_BASIC_EXCEPTION")
static class Execution extends SynchronousStepExecution<Void> {

private static final long serialVersionUID = 1300005476208035751L;
Expand Down

0 comments on commit 6647e0f

Please sign in to comment.