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 937fc0f commit b23a87c
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) conf).setDelimiterParsingDisabled(
true);
AbstractConfiguration astConf = (AbstractConfiguration) conf;
astConf.setDelimiterParsingDisabled(true);
}
return;
}
Expand Down

0 comments on commit b23a87c

Please sign in to comment.