This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch elasticity in repository https://gitbox.apache.org/repos/asf/accumulo.git
commit 2890cc2c99a1ae0fd1531533df6ee75f8b2f1cfa Author: Christopher Tubbs <ctubb...@apache.org> AuthorDate: Thu Dec 21 14:34:48 2023 -0500 Trivial variable rename (for #4103) --- .../base/src/main/java/org/apache/accumulo/server/ServerDirs.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/base/src/main/java/org/apache/accumulo/server/ServerDirs.java b/server/base/src/main/java/org/apache/accumulo/server/ServerDirs.java index 10a3dfb925..062198ba4b 100644 --- a/server/base/src/main/java/org/apache/accumulo/server/ServerDirs.java +++ b/server/base/src/main/java/org/apache/accumulo/server/ServerDirs.java @@ -144,7 +144,7 @@ public class ServerDirs { private Map<Path,Path> loadVolumeReplacements() { - Map<Path,Path> replacementsList; + Map<Path,Path> replacementsMap; String replacements = conf.get(Property.INSTANCE_VOLUMES_REPLACEMENTS); if (replacements == null || replacements.trim().isEmpty()) { @@ -204,9 +204,9 @@ public class ServerDirs { } // only set if get here w/o exception - replacementsList = ret; + replacementsMap = ret; - return replacementsList; + return replacementsMap; } public Map<Path,Path> getVolumeReplacements() {