Skip to content

Commit

Permalink
Disable YUI by default
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Dec 10, 2024
1 parent c5c47ca commit 9367be0
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package jenkins.model.experimentalflags;

import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import hudson.Extension;
import org.kohsuke.accmod.Restricted;
Expand All @@ -46,4 +47,10 @@ public String getDisplayName() {
public String getShortDescription() {
return "Remove YUI from all Jenkins UI pages. This will break anything that depends on YUI";
}

@NonNull
@Override
public Boolean getDefaultValue() {
return true;
}
}

0 comments on commit 9367be0

Please sign in to comment.