You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2015/04/23 18:03:41 UTC

[3/7] accumulo git commit: ACCUMULO-3742 always setDelimiterParsingDisabled when ClientConfiguration is constructed to avoid unneeded warnings

ACCUMULO-3742 always setDelimiterParsingDisabled when ClientConfiguration is constructed to avoid unneeded warnings


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/f220709c
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/f220709c
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/f220709c

Branch: refs/heads/master
Commit: f220709c1b87e5e697f5a76740974800a3c60c99
Parents: 0fb7f3a
Author: Billie Rinaldi <bi...@apache.org>
Authored: Thu Apr 23 08:51:10 2015 -0700
Committer: Billie Rinaldi <bi...@apache.org>
Committed: Thu Apr 23 08:51:10 2015 -0700

----------------------------------------------------------------------
 .../java/org/apache/accumulo/core/client/ClientConfiguration.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/f220709c/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
index 7aab80c..f404bd8 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
@@ -154,6 +154,7 @@ public class ClientConfiguration extends CompositeConfiguration {
   private ClientConfiguration(PropertiesConfiguration propertiesConfiguration, String configFile) throws ConfigurationException {
     super(propertiesConfiguration);
     // Don't do list interpolation
+    this.setDelimiterParsingDisabled(true);
     propertiesConfiguration.setDelimiterParsingDisabled(true);
     propertiesConfiguration.load(configFile);
   }
@@ -165,6 +166,7 @@ public class ClientConfiguration extends CompositeConfiguration {
   private ClientConfiguration(PropertiesConfiguration propertiesConfiguration, File configFile) throws ConfigurationException {
     super(propertiesConfiguration);
     // Don't do list interpolation
+    this.setDelimiterParsingDisabled(true);
     propertiesConfiguration.setDelimiterParsingDisabled(true);
     propertiesConfiguration.load(configFile);
   }