mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - code cleanup - removed unused param
This commit is contained in:
@@ -116,7 +116,7 @@ public class DeployUtil {
|
||||
if (scalarType == null) {
|
||||
// use JPA normal Enum type (without mapping)
|
||||
EnumType type = enumerated != null ? enumerated.value() : null;
|
||||
scalarType = createEnumScalarTypePerSpec(enumType, type, prop.getDbType());
|
||||
scalarType = createEnumScalarTypePerSpec(enumType, type);
|
||||
}
|
||||
|
||||
typeManager.add(scalarType);
|
||||
@@ -125,7 +125,7 @@ public class DeployUtil {
|
||||
prop.setDbType(scalarType.getJdbcType());
|
||||
}
|
||||
|
||||
private ScalarType<?> createEnumScalarTypePerSpec(Class<?> enumType, EnumType type, int dbType) {
|
||||
private ScalarType<?> createEnumScalarTypePerSpec(Class<?> enumType, EnumType type) {
|
||||
|
||||
if (type == null) {
|
||||
// default as per spec is ORDINAL
|
||||
|
||||
Reference in New Issue
Block a user