From 82bad586c430ae0127590e4ab565cc3730144fd9 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Sun, 28 Jul 2024 08:22:34 -0600 Subject: [PATCH] Add @since Javadoc comments to new APIs --- core/src/main/java/hudson/model/Computer.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/java/hudson/model/Computer.java b/core/src/main/java/hudson/model/Computer.java index 38af6b5a56b3..f826ca5cdd75 100644 --- a/core/src/main/java/hudson/model/Computer.java +++ b/core/src/main/java/hudson/model/Computer.java @@ -384,6 +384,7 @@ public OfflineCause getOfflineCause() { * * @return * null if the system was put temporarily offline without given a cause. + * @since TODO */ @Exported public OfflineCause getTemporarilyOfflineCause() { @@ -408,6 +409,7 @@ public String getOfflineCauseReason() { * * @return * empty string if the system was put temporarily offline without given a cause. + * @since TODO */ @Exported public String getTemporarilyOfflineCauseReason() { @@ -691,6 +693,7 @@ public final boolean isOnline() { * Helper for the UI * * @return true if the agent is offline and not trying to connect currently and the cause differs from the temporarily offline cause + * @since TODO */ @Restricted(NoExternalUse.class) public boolean isOfflineAfterDisconnect() {