Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-26148] Using default implementation of StepExecution.stop.
  • Loading branch information
jglick committed Sep 4, 2017
1 parent 2d7fa33 commit f2f9f7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.23</version>
<version>2.33</version>
<relativePath />
</parent>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -39,7 +39,7 @@
</pluginRepositories>
<properties>
<jenkins.version>1.642.3</jenkins.version>
<workflow-step-api-plugin.version>2.11</workflow-step-api-plugin.version>
<workflow-step-api-plugin.version>2.13-20170904.014626-1</workflow-step-api-plugin.version> <!-- TODO https://github.com/jenkinsci/workflow-step-api-plugin/pull/30 -->
</properties>
<dependencies>
<dependency>
Expand Down
Expand Up @@ -2,7 +2,6 @@

import com.google.inject.Inject;
import hudson.AbortException;
import hudson.EnvVars;
import hudson.Extension;
import hudson.XmlFile;
import hudson.model.InvisibleAction;
Expand Down Expand Up @@ -104,12 +103,6 @@ private static boolean isInsideParallel(FlowNode n) {
}
}

@Override
public void stop(Throwable cause) throws Exception {
// TODO
throw new UnsupportedOperationException();
}

private static XmlFile getConfigFile() throws IOException {
Jenkins j = Jenkins.getInstance();
if (j == null) {
Expand Down

0 comments on commit f2f9f7d

Please sign in to comment.