Skip to content

Commit

Permalink
tiny improve
Browse files Browse the repository at this point in the history
  • Loading branch information
houzhizhen committed Apr 26, 2021
1 parent b23a87c commit 1f94c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/baidu/hugegraph/config/HugeConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public HugeConfig(String configFile) {
private void reloadIfNeed(Configuration conf) {
if (!(conf instanceof AbstractFileConfiguration)) {
if (conf instanceof AbstractConfiguration) {
AbstractConfiguration astConf = (AbstractConfiguration) conf;
astConf.setDelimiterParsingDisabled(true);
AbstractConfiguration config = (AbstractConfiguration) conf;
config.setDelimiterParsingDisabled(true);
}
return;
}
Expand Down

0 comments on commit 1f94c3f

Please sign in to comment.