Skip to content

Commit 5e371cf

Browse files
committed
Suppressing a warning.
1 parent 2165451 commit 5e371cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

olcut-core/src/main/java/com/oracle/labs/mlrg/olcut/config/ConfigurationManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,6 +1974,7 @@ public String importConfigurable(Configurable configurable,
19741974
m.put(propertyName, ListProperty.createFromStringList(stringList));
19751975
}
19761976
} else if (FieldType.mapTypes.contains(ft)) {
1977+
@SuppressWarnings("unchecked")
19771978
Map<String,?> fieldMap = (Map<String,?>) field.get(configurable);
19781979
HashMap<String, SimpleProperty> newMap = new HashMap<>();
19791980
for (Map.Entry<String,?> e : fieldMap.entrySet()) {

0 commit comments

Comments
 (0)