Skip to content

Commit

Permalink
Json parse bug (#280)
Browse files Browse the repository at this point in the history
* fix #7546

* json parse bug
  • Loading branch information
hujun-w-2 authored Jan 24, 2022
1 parent 31507db commit 26fee8c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class DefaultJsonConfigParse extends AbstractConfigParse {
@Override
public Map<String, Object> parse(String configText) {
final AtomicReference<Map<String, Object>> result = new AtomicReference<Map<String, Object>>();
configText = configText.replaceAll("\t", "");
DefaultYamlConfigParse.process(new DefaultYamlConfigParse.MatchCallback() {
@Override
public void process(Map<String, Object> map) {
Expand Down

0 comments on commit 26fee8c

Please sign in to comment.