summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-08-24 22:25:24 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-08-24 22:25:24 +0200
commitcec34c9510ec836500dbf5f65ef0e30d4d9b1f70 (patch)
treec3d084419d554bf405ef9663a292f150dd837870 /controller-api
parentf17f5b9c41fb27f0c6ffa8e4ed5637f0e8c7d3aa (diff)
Dummy commit to rebuild broken class file in SD cache
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java
index 3bcd7298a15..3e33b2e7bf0 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/zone/ZoneFilter.java
@@ -5,7 +5,7 @@ package com.yahoo.vespa.hosted.controller.api.integration.zone;
* A ZoneId list which can be filtered in various ways; elements can be accessed after at least one filter.
*
* The methods here return instances of {@link ZoneList}, which extends ZoneFilter, but with accessors and additional filters.
- * This forces the developer to consider which of the filters in this class to apply, prior to processing any zones.
+ * This forces the developer to consider which of the filters in this class to apply, prior to accessing any zones.
*
* @author jonmv
*/
@@ -14,13 +14,13 @@ public interface ZoneFilter {
/** Negates the next filter. */
ZoneFilter not();
- /** All zones from the initial pool. */
- ZoneList all();
-
/** Zones which are upgraded by the controller. */
ZoneList controllerUpgraded();
/** Zones where config servers are up and running. */
ZoneList reachable();
+ /** All zones from the initial pool. */
+ ZoneList all();
+
}