Skip to content

Commit

Permalink
[FIXED JENKINS-26345] "CVS Symbolic Name parameter" not working any more
Browse files Browse the repository at this point in the history
  • Loading branch information
fredg02 committed Jun 9, 2016
1 parent 9390d5a commit 1b6a75d
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/main/java/hudson/scm/CvsTagsParamDefinition.java
Expand Up @@ -218,14 +218,7 @@ public void dispose() {


public Client getCvsClient(final String cvsRootString, final boolean passwordRequired, final Secret password) { public Client getCvsClient(final String cvsRootString, final boolean passwordRequired, final Secret password) {
CVSRoot cvsRoot = CVSRoot.parse(cvsRootString); CVSRoot cvsRoot = CVSRoot.parse(cvsRootString);
EnvVars envVars = new EnvVars(); EnvVars envVars = new EnvVars(System.getenv());
try {
envVars = Computer.currentComputer().getEnvironment();
} catch (IOException e) {
//ignored, can't do much
} catch (InterruptedException e) {
//ignored, can't do much
}


CVSSCM.DescriptorImpl cvsDescriptor = getCvsDescriptor(); CVSSCM.DescriptorImpl cvsDescriptor = getCvsDescriptor();


Expand Down

0 comments on commit 1b6a75d

Please sign in to comment.