Skip to content

Commit

Permalink
Fix JENKINS-24140
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed Aug 14, 2014
1 parent ca7b1c8 commit f11b368
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 49 deletions.
Expand Up @@ -9,6 +9,7 @@
/**
* @author Gregory Boissinot
*/
@Deprecated
public class DeployedArtifacts implements Action {

private Map<Integer, List<ArtifactDeployerVO>> deployedArtifactsInfo = new HashMap<Integer, List<ArtifactDeployerVO>>();
Expand All @@ -29,4 +30,11 @@ public Map<Integer, List<ArtifactDeployerVO>> getDeployedArtifactsInfo() {
return deployedArtifactsInfo;
}

@SuppressWarnings("unused")
private Object readResolve() {
final ArtifactDeployerBuildAction artifactDeployerBuildAction = new ArtifactDeployerBuildAction();
artifactDeployerBuildAction.setArtifactsInfo(null, deployedArtifactsInfo);
return artifactDeployerBuildAction;
}

}

This file was deleted.

Expand Up @@ -24,11 +24,16 @@ THE SOFTWARE.
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:l="/lib/layout">
<l:layout norefresh="true">
<st:include it="${it.owner}" page="sidepanel.jelly"/>
<j:if test="${it.owner != null}">
<st:include it="${it.owner}" page="sidepanel.jelly"/>
</j:if>
<l:main-panel>
<h1>
<img src="${imagesURL}/48x48/package.gif" alt="" height="48" width="48"/>
${%Deployed Artifacts} #${it.owner.number}
${%Deployed Artifacts}
<j:if test="${it.owner != null}">
#${it.owner.number}
</j:if>
</h1>
<j:set var="latestDeployedArtifacts" value="${it.allArtifacts}"/>
<table class="fileList">
Expand Down

0 comments on commit f11b368

Please sign in to comment.