Skip to content

Commit 3584cb4

Browse files
committedFeb 16, 2022
onLoad(FlowExecutionOwner) is meant to throw IOException

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/org/jenkinsci/plugins/workflow/flow/FlowExecution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public FlowDurabilityHint getDurabilityHint() {
109109
/**
110110
* Should be called by the flow owner after it is deserialized.
111111
*/
112-
public /*abstract*/ void onLoad(FlowExecutionOwner owner) {
112+
public /*abstract*/ void onLoad(FlowExecutionOwner owner) throws IOException {
113113
if (Util.isOverridden(FlowExecution.class, getClass(), "onLoad")) {
114114
onLoad();
115115
}

0 commit comments

Comments
 (0)
Please sign in to comment.