Skip to content

Commit 9ed9bda

Browse files
committed
eliminate a raw type
1 parent 33c0191 commit 9ed9bda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hibernate-core/src/main/java/org/hibernate/metamodel/internal/JpaMetamodelPopulationSetting.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ public static JpaMetamodelPopulationSetting parse(String setting) {
2626
};
2727
}
2828

29-
public static JpaMetamodelPopulationSetting determineJpaMetaModelPopulationSetting(Map configurationValues) {
29+
public static JpaMetamodelPopulationSetting determineJpaMetaModelPopulationSetting(Map<String, Object> settings) {
3030
String setting = ConfigurationHelper.getString(
3131
AvailableSettings.JPA_METAMODEL_POPULATION,
32-
configurationValues,
32+
settings,
3333
"ignoreUnsupported"
3434
);
3535
return JpaMetamodelPopulationSetting.parse( setting );

0 commit comments

Comments
 (0)