Skip to content

Commit 619fd52

Browse files
authored
Merge pull request jenkinsci#201 from jglick/IOException
`onLoad(FlowExecutionOwner)` is meant to throw `IOException`
2 parents 7f5f175 + 3584cb4 commit 619fd52

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)