Adapt to Spring Framework API change

This commit is contained in:
Stephane Nicoll
2018-09-04 14:09:57 +02:00
parent cb7de2a963
commit c0e45b7333
13 changed files with 52 additions and 52 deletions

View File

@@ -123,10 +123,10 @@ public class JavaCompilerFieldValuesParser implements FieldValuesParser {
static {
Map<String, String> values = new HashMap<>();
values.put("Bytes", "B");
values.put("KiloBytes", "KB");
values.put("MegaBytes", "MB");
values.put("GigaBytes", "GB");
values.put("TeraBytes", "TB");
values.put("Kilobytes", "KB");
values.put("Megabytes", "MB");
values.put("Gigabytes", "GB");
values.put("Terabytes", "TB");
DATA_SIZE_SUFFIX = Collections.unmodifiableMap(values);
}