summaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-11-16 15:23:03 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2016-11-16 15:23:03 +0100
commit3becfc2562842a915ed307e2a62d30a4ed5488bb (patch)
tree36a8688c9af913bfc5f72fe2aef530c47c559a2e /vdslib
parent9d8296953e573fc23fe4e346219d4155e6f4e81c (diff)
Implement function delegation in Tensor
Diffstat (limited to 'vdslib')
-rw-r--r--vdslib/src/main/java/com/yahoo/vdslib/state/ClusterState.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdslib/src/main/java/com/yahoo/vdslib/state/ClusterState.java b/vdslib/src/main/java/com/yahoo/vdslib/state/ClusterState.java
index d70b55c66a2..a54f1971d21 100644
--- a/vdslib/src/main/java/com/yahoo/vdslib/state/ClusterState.java
+++ b/vdslib/src/main/java/com/yahoo/vdslib/state/ClusterState.java
@@ -20,7 +20,7 @@ public class ClusterState implements Cloneable {
private Map<Node, NodeState> nodeStates = new TreeMap<>();
// TODO: Change to one count for distributor and one for storage, rather than an array
- // TODO: Rename, this is not the highest node count but the highest index
+ // TODO: RenameFunction, this is not the highest node count but the highest index
private ArrayList<Integer> nodeCount = new ArrayList<>(2);
private String description = "";