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.
2 parents 94b6fd3 + 21af668 commit ac50184Copy full SHA for ac50184
plugin/src/main/java/org/jenkinsci/plugins/workflow/cps/CpsBodySubContext.java
@@ -54,10 +54,14 @@ public int hashCode() {
54
return 31 * base.hashCode() + node.hashCode();
55
}
56
57
+ @Override
58
+ public String toString() {
59
+ return "CpsBodySubContext[" + base + ":" + node.getId()+ "]";
60
+ }
61
+
62
// Delegation to 'base' from here
63
//======================================
64
-
65
@Override
66
public void onFailure(Throwable t) {
67
base.onFailure(t);
0 commit comments