Skip to content

Commit

Permalink
Merge pull request #5364 from daniel-beck/at-since-2.284
Browse files Browse the repository at this point in the history
Update at-since annotations up to 2.284
  • Loading branch information
oleg-nenashev authored Mar 23, 2021
2 parents e2837f8 + 15299a7 commit e723ebc
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class BooleanParameterDefinition extends SimpleParameterDefinition {
private boolean defaultValue;

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public BooleanParameterDefinition(String name) {
Expand Down Expand Up @@ -69,7 +69,7 @@ public boolean isDefaultValue() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setDefaultValue(boolean defaultValue) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
public class FileParameterDefinition extends ParameterDefinition {

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public FileParameterDefinition(String name) {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/ParameterDefinition.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public String getDescription() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setDescription(@CheckForNull String description) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class StringParameterDefinition extends SimpleParameterDefinition {
private boolean trim;

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public StringParameterDefinition(String name) {
Expand Down Expand Up @@ -113,7 +113,7 @@ public boolean isTrim() {
}

/**
* @since TODO
* @since 2.281
*/
@DataBoundSetter
public void setTrim(boolean trim) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public class TextParameterDefinition extends StringParameterDefinition {

/**
* @since TODO
* @since 2.281
*/
@DataBoundConstructor
public TextParameterDefinition(String name) {
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/org/jenkins/ui/icon/Icon.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public Icon(String classSpec, String url, String style, IconType iconType) {
* @param url The icon image url.
* @param style The icon style.
* @param iconFormat the {@link IconFormat}.
* @since TODO
* @since 2.283
*/
public Icon(String classSpec, String url, String style, IconFormat iconFormat) {
this(classSpec, url, style, IconType.CORE, iconFormat);
Expand Down Expand Up @@ -143,7 +143,7 @@ public String getClassSpec() {

/**
* Is the Icon an SVG?
* @since TODO
* @since 2.283
*/
public boolean isSvgSprite() {
return iconFormat == IconFormat.EXTERNAL_SVG_SPRITE;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/jenkins/ui/icon/IconFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
* Format for the icon.
* @since TODO
* @since 2.283
*/
public enum IconFormat {
IMG,
Expand Down

0 comments on commit e723ebc

Please sign in to comment.