Skip to content

Commit d30bf09

Browse files
gavinkingsebersole
andcommitted
Apply suggestions from code review
Co-authored-by: Steve Ebersole <steve@hibernate.org>
1 parent 72c2559 commit d30bf09

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-core/src/main/java/org/hibernate/type/descriptor/java/EnumJavaType.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ public JdbcType getRecommendedJdbcType(JdbcTypeIndicators context) {
5454
}
5555

5656
public boolean hasManyValues() {
57-
return getJavaTypeClass().getEnumConstants().length > 128; // a bit arbitrary, but gives us some headroom
57+
// a bit arbitrary, but gives us some headroom
58+
return getJavaTypeClass().getEnumConstants().length > 128;
5859
}
5960

6061
@Override

0 commit comments

Comments
 (0)