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 2019/07/24 22:34:16 UTC

[accumulo] branch 1.9 updated: Fix misspelling

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

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


The following commit(s) were added to refs/heads/1.9 by this push:
     new fece0bb  Fix misspelling
fece0bb is described below

commit fece0bbf44dcbd986854353927ea50cffaf8cb00
Author: Mike Miller <mm...@apache.org>
AuthorDate: Wed Jul 24 18:30:52 2019 -0400

    Fix misspelling
---
 .../org/apache/accumulo/core/client/impl/TableOperationsImpl.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java b/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
index 27ce0c8..4a7d22d 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/impl/TableOperationsImpl.java
@@ -1698,13 +1698,13 @@ public class TableOperationsImpl extends TableOperationsHelper {
     return sci.toSamplerConfiguration();
   }
 
-  private static class LoctionsImpl implements Locations {
+  private static class LocationsImpl implements Locations {
 
     private Map<Range,List<TabletId>> groupedByRanges;
     private Map<TabletId,List<Range>> groupedByTablets;
     private Map<TabletId,String> tabletLocations;
 
-    public LoctionsImpl(Map<String,Map<KeyExtent,List<Range>>> binnedRanges) {
+    public LocationsImpl(Map<String,Map<KeyExtent,List<Range>>> binnedRanges) {
       groupedByTablets = new HashMap<>();
       groupedByRanges = null;
       tabletLocations = new HashMap<>();
@@ -1808,6 +1808,6 @@ public class TableOperationsImpl extends TableOperationsHelper {
       locator.invalidateCache();
     }
 
-    return new LoctionsImpl(binnedRanges);
+    return new LocationsImpl(binnedRanges);
   }
 }