From db61f470c364e04cd67a4a5263b60d9f74701987 Mon Sep 17 00:00:00 2001 From: valentina Date: Fri, 2 Sep 2016 14:48:42 +0200 Subject: [PATCH] remove restriction to be able to override the method in subclasses (#2523) * remove restriction to be able to ovverride the method in subclasses * since needs to be adjusted --- core/src/main/java/hudson/model/UpdateSite.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/model/UpdateSite.java b/core/src/main/java/hudson/model/UpdateSite.java index c3e98d12e9..0700b514d6 100644 --- a/core/src/main/java/hudson/model/UpdateSite.java +++ b/core/src/main/java/hudson/model/UpdateSite.java @@ -260,10 +260,9 @@ public class UpdateSite { * if name is null, then the default name will be used, * which is "update site" followed by the update site id * @return the signature validator. - * @since 2.20 + * @since 2.21 */ @Nonnull - @Restricted(NoExternalUse.class) protected JSONSignatureValidator getJsonSignatureValidator(@CheckForNull String name) { if (name == null) { name = signatureValidatorPrefix + " '" + id + "'"; -- GitLab