Skip to content

Commit

Permalink
fix: append . to array element (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
algomaster99 authored Apr 14, 2023
1 parent 4aaee45 commit a29058f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ private Set<String> extractVarVals(String prefix, RuntimeValue valueJo) {

for (int i = 0; i < nestedTypes.size(); i++) {
RuntimeValue nestedObj = nestedTypes.get(i);
String currentPrefix = prefix + "[" + i + "]";
String currentPrefix = prefix + "[" + i + "].";
varVals.addAll(extractVarVals(currentPrefix, nestedObj));
}
} else {
Expand Down

0 comments on commit a29058f

Please sign in to comment.