Skip to content

Commit

Permalink
[JENKINS-41124] Actually the super method needs to be first
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Jan 18, 2017
1 parent 71c15f0 commit 1d90bf7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -168,6 +168,7 @@ public void onCreatedFromScratch() {

@Override
public void onLoad(ItemGroup<? extends Item> parent, String name) throws IOException {
super.onLoad(parent, name);
try {
FileUtils.forceMkdir(getComputationDir());
} catch (IOException x) {
Expand All @@ -183,7 +184,6 @@ public void onLoad(ItemGroup<? extends Item> parent, String name) throws IOExcep
}
}
}
super.onLoad(parent, name);
}

/**
Expand Down

0 comments on commit 1d90bf7

Please sign in to comment.