mirror of
https://github.com/OMGeeky/ATCS.git
synced 2026-02-23 15:38:23 +01:00
fix bug in writeMinMaxToMap
This commit is contained in:
@@ -67,7 +67,7 @@ public final class Common {
|
|||||||
if (min != null || max != null) {
|
if (min != null || max != null) {
|
||||||
Map minMaxMap = new LinkedHashMap();
|
Map minMaxMap = new LinkedHashMap();
|
||||||
parent.put(key, minMaxMap);
|
parent.put(key, minMaxMap);
|
||||||
writeMinMaxToMap(parent, min, max, defaultValue);
|
writeMinMaxToMap(minMaxMap, min, max, defaultValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static void writeDescriptionToMap(Map parent, String description) {
|
public static void writeDescriptionToMap(Map parent, String description) {
|
||||||
|
|||||||
Reference in New Issue
Block a user