Skip to content

Commit

Permalink
Fill in since annotations (#9927)
Browse files Browse the repository at this point in the history
Co-authored-by: timja <[email protected]>
  • Loading branch information
github-actions[bot] and timja authored Nov 1, 2024
1 parent 3a25593 commit 87cfc46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/Computer.java
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ public boolean isTemporarilyOffline() {

/**
* Allows a caller to define an {@link OfflineCause} for a computer that has never been online.
* @since TODO
* @since 2.483
*/
public void setOfflineCause(OfflineCause cause) {
this.offlineCause = cause;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/agents/IOfflineCause.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

/**
* Represents a cause that puts a {@linkplain IComputer#isOffline() computer offline}.
* @since TODO
* @since 2.483
*/
public interface IOfflineCause {
/**
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/model/IComputer.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ default boolean hasOfflineCause() {

/**
* @return the offline cause if the computer is offline.
* @since TODO
* @since 2.483
*/
IOfflineCause getOfflineCause();

Expand Down

0 comments on commit 87cfc46

Please sign in to comment.