Skip to content

Commit

Permalink
[JENKINS-17058] Add Alexander Fisher's patches from comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvandoren committed Apr 12, 2013
1 parent c591bae commit 549ebd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Expand Up @@ -291,4 +291,9 @@ public String toString() {
return addToToString(new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE)).toString();
}

public Object readResolve()
{
return super.readResolve();
}

}
Expand Up @@ -78,7 +78,13 @@ public BapSshHostConfiguration getConfiguration(final String name) {
}

@Extension
public static class Descriptor extends BapSshPublisherPluginDescriptor { }
public static class Descriptor extends BapSshPublisherPluginDescriptor {
@Override
public Object readResolve()
{
return super.readResolve();
}
}

/** prevent xstream noise */
@Deprecated
Expand Down

0 comments on commit 549ebd5

Please sign in to comment.