Skip to content

Commit

Permalink
[JENKINS-43786] Updated the Jenkins core version with the proper week…
Browse files Browse the repository at this point in the history
…ly release where those changes will be available
  • Loading branch information
recena committed Jan 21, 2018
1 parent d21ea1c commit d1b29da
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -97,13 +97,13 @@ In your implementation of https://jenkins.io/doc/developer/extensions/jenkins-co
[source,java]
----
/**
* This method can be removed when the baseline is updated to 2.101
* This method can be removed when the baseline is updated to 2.103
*
* @return If this version of the plugin is running on a Jenkins version where JENKINS-43786 is included.
*/
@Restricted(DoNotUse.class)
public boolean isTheNewDesignAvailable() {
if (Jenkins.getVersion().isNewerThan(new VersionNumber("2.101"))) {
if (Jenkins.getVersion().isNewerThan(new VersionNumber("2.103"))) {
return true;
}
return false;
Expand Down

0 comments on commit d1b29da

Please sign in to comment.