提交 9e90b598 编写于 作者: J James Nord

[Fixed JENKINS-53608] Incorect method signatures of readResolve()

上级 e1a9446a
...@@ -245,10 +245,11 @@ public class SCMTrigger extends Trigger<Item> { ...@@ -245,10 +245,11 @@ public class SCMTrigger extends Trigger<Item> {
private static final int THREADS_UPPER_BOUND = 100; private static final int THREADS_UPPER_BOUND = 100;
private static final int THREADS_DEFAULT= 10; private static final int THREADS_DEFAULT= 10;
private void readResolve() { private Object readResolve() {
if (maximumThreads == 0) { if (maximumThreads == 0) {
maximumThreads = THREADS_DEFAULT; maximumThreads = THREADS_DEFAULT;
} }
return this;
} }
public boolean isApplicable(Item item) { public boolean isApplicable(Item item) {
......
...@@ -60,7 +60,7 @@ public class ApiTokenStats implements Saveable { ...@@ -60,7 +60,7 @@ public class ApiTokenStats implements Saveable {
this.init(); this.init();
} }
private ApiTokenStats readResolve() { private Object readResolve() {
this.init(); this.init();
return this; return this;
} }
...@@ -217,7 +217,7 @@ public class ApiTokenStats implements Saveable { ...@@ -217,7 +217,7 @@ public class ApiTokenStats implements Saveable {
this.tokenUuid = tokenUuid; this.tokenUuid = tokenUuid;
} }
private SingleTokenStats readResolve() { private Object readResolve() {
if (this.useCounter != null) { if (this.useCounter != null) {
// to avoid negative numbers to be injected // to avoid negative numbers to be injected
this.useCounter = Math.max(0, this.useCounter); this.useCounter = Math.max(0, this.useCounter);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册