Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #13 from metcox/master
additional fix for JENKINS-13439 Tagging a build fails due to exception
  • Loading branch information
mc1arke committed May 27, 2012
2 parents 07fe749 + b7ab97c commit 1d0b8ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/hudson/scm/cvstagging/LegacyTagAction.java
Expand Up @@ -365,9 +365,10 @@ public Descriptor<LegacyTagAction> getDescriptor() {
public static final class LegacyTagWorkerThread extends TaskThread {
private final Map<AbstractBuild<?, ?>, String> tagSet;

@SuppressWarnings("deprecation") // use a deprecated method, so we can support as many versions of Jenkins as possible
public LegacyTagWorkerThread(final LegacyTagAction owner,
final Map<AbstractBuild<?, ?>, String> tagSet) {
super(owner, ListenerAndText.forMemory(null));
super(owner, ListenerAndText.forMemory());
this.tagSet = tagSet;
}

Expand Down

0 comments on commit 1d0b8ee

Please sign in to comment.