Skip to content

Commit

Permalink
Fix map debug string
Browse files Browse the repository at this point in the history
  • Loading branch information
anhcraft committed May 11, 2023
1 parent d1b7752 commit 519a4ec
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ public class MapAdapter implements TypeAdapter<Map<?, ?>> {
valueType = Object.class;
}
ConfigSection section = Objects.requireNonNull(value.asSection());
System.out.println("q");
Map<?, ?> map = createMapOf(targetType);
for (String k : section.getKeys(false)) {
map.put(deserializer.transform(keyType, SimpleForm.of(k)), deserializer.transform(valueType, section.get(k)));
Expand Down

0 comments on commit 519a4ec

Please sign in to comment.