Skip to content

Commit

Permalink
[JENKINS-16641] Removed doPostBuild property
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgarnet committed Feb 5, 2013
1 parent a612352 commit 7015741
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/net/praqma/hudson/scm/CCUCMScm.java
Expand Up @@ -71,7 +71,6 @@ public class CCUCMScm extends SCM {
private String bl;
private StringBuffer pollMsgs = new StringBuffer();
private Stream integrationstream;
private boolean doPostBuild = true;
private String buildProject;
private String jobName = "";
private Integer jobNumber;
Expand Down Expand Up @@ -152,8 +151,6 @@ public boolean checkout( AbstractBuild<?, ?> build, Launcher launcher, FilePath
throw new AbortException( e.getMessage() );
}

doPostBuild = true;

/* Make build action */
/* Store the configuration */
CCUCMBuildAction action = null;
Expand Down Expand Up @@ -336,7 +333,6 @@ private boolean initializeWorkspace( AbstractBuild<?, ?> build, FilePath workspa
ExceptionUtils.log( cause, true );
}

doPostBuild = false;
return false;
}

Expand Down Expand Up @@ -905,11 +901,6 @@ public String getTreatUnstable() {
return treatUnstable.toString();
}

@Exported
public boolean doPostbuild() {
return doPostBuild;
}

public String getBuildProject() {
return buildProject;
}
Expand Down

0 comments on commit 7015741

Please sign in to comment.