Skip to content

Commit 3584cb4

Browse files
committed
onLoad(FlowExecutionOwner) is meant to throw IOException
1 parent 7f5f175 commit 3584cb4

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

Lines changed: 1 addition & 1 deletion
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)