Skip to content

Commit

Permalink
[JENKINS-64746] restore a deprecated constructor with acegisecurity
Browse files Browse the repository at this point in the history
  • Loading branch information
escoem committed Jan 29, 2021
1 parent 022a09c commit f08a336
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/main/java/hudson/model/UpdateCenter.java
Original file line number Diff line number Diff line change
Expand Up @@ -2410,6 +2410,12 @@ public String toString() {
* Represents the state of the upgrade activity of Jenkins core.
*/
public final class HudsonUpgradeJob extends DownloadJob {

@Deprecated
public HudsonUpgradeJob(UpdateSite site, org.acegisecurity.Authentication auth) {
super(site, auth.toSpring());
}

public HudsonUpgradeJob(UpdateSite site, Authentication auth) {
super(site, auth);
}
Expand Down

0 comments on commit f08a336

Please sign in to comment.