Skip to content

Commit

Permalink
fix: 解决 spotbugs 报 SE_BAD_FIELD 错误
Browse files Browse the repository at this point in the history
  • Loading branch information
liuweiGL committed Feb 5, 2023
1 parent 8dfd0b1 commit 5898fa9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/io/jenkins/plugins/DingTalkStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ public StepExecution start(StepContext context) throws Exception {

private static class DingTalkStepExecution extends StepExecution {

private final DingTalkStep step;
private static final long serialVersionUID = 1L;
private final transient DingTalkStep step;

private DingTalkStepExecution(DingTalkStep step, StepContext context) {
super(context);
Expand Down

0 comments on commit 5898fa9

Please sign in to comment.