summaryrefslogtreecommitdiffstats
path: root/vespajlib/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-02-28 12:28:21 +0100
committerJon Bratseth <bratseth@gmail.com>2023-02-28 12:28:21 +0100
commit7a0c9c66710b2bec22a7f2999b4ce938475b8a2c (patch)
tree392238d9a43f89fdbdd030c7e1a41552bf89c5da /vespajlib/src
parentf2c3ffc3ec33267b46aaa767de8c969a511af3a4 (diff)
Track DeploymentInfoMaintainer success
Diffstat (limited to 'vespajlib/src')
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java b/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
index 1e2c0900ff7..33e46ebc75f 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/Maintainer.java
@@ -93,7 +93,7 @@ public abstract class Maintainer implements Runnable {
*
* @return the degree to which the run was successful - a number between 0 (no success), to 1 (complete success).
* Note that this indicates whether something is wrong, so e.g if the call did nothing because it should do
- * nothing, 1.0 should be returned.
+ * nothing, 1.0 should be returned.
*/
protected abstract double maintain();