You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2018/03/19 15:18:29 UTC

[accumulo] branch master updated: ACCUMULO-3238 Use HashBasedTable instead of Table

This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new f6dd4a3  ACCUMULO-3238 Use HashBasedTable instead of Table
f6dd4a3 is described below

commit f6dd4a3728184b9001b454ddcf0d412841d5d303
Author: Mike Miller <mm...@apache.org>
AuthorDate: Mon Mar 19 11:05:40 2018 -0400

    ACCUMULO-3238 Use HashBasedTable instead of Table
---
 .../java/org/apache/accumulo/server/master/balancer/GroupBalancer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/base/src/main/java/org/apache/accumulo/server/master/balancer/GroupBalancer.java b/server/base/src/main/java/org/apache/accumulo/server/master/balancer/GroupBalancer.java
index 925ff0d..ddcd11f 100644
--- a/server/base/src/main/java/org/apache/accumulo/server/master/balancer/GroupBalancer.java
+++ b/server/base/src/main/java/org/apache/accumulo/server/master/balancer/GroupBalancer.java
@@ -450,7 +450,7 @@ public abstract class GroupBalancer extends TabletBalancer {
 
   private static class Moves {
 
-    private final com.google.common.collect.Table<TServerInstance,String,List<Move>> moves = HashBasedTable.create();
+    private final HashBasedTable<TServerInstance,String,List<Move>> moves = HashBasedTable.create();
     private int totalMoves = 0;
 
     public void move(String group, int num, TserverGroupInfo src, TserverGroupInfo dest) {

-- 
To stop receiving notification emails like this one, please contact
mmiller@apache.org.