We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5794322 commit 21af668Copy full SHA for 21af668
plugin/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsBodySubContext.java
@@ -54,14 +54,14 @@ public int hashCode() {
54
return 31 * base.hashCode() + node.hashCode();
55
}
56
57
- // Delegation to 'base' from here
58
-//======================================
59
-
60
@Override
61
public String toString() {
62
return "CpsBodySubContext[" + base + ":" + node.getId()+ "]";
63
64
+ // Delegation to 'base' from here
+//======================================
+
65
66
public void onFailure(Throwable t) {
67
base.onFailure(t);
0 commit comments