Skip to content

Commit 37ba8ec

Browse files
committed
HHH-19852 reformat method code
1 parent 06fdba0 commit 37ba8ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hibernate-core/src/main/java/org/hibernate/dialect/OracleServerConfiguration.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ public static OracleServerConfiguration fromDialectResolutionInfo(DialectResolut
133133

134134
private static boolean isExtended(Statement statement) {
135135
try (final ResultSet resultSet =
136-
statement.executeQuery("SELECT property_value FROM database_properties " +
137-
"WHERE property_name = 'MAX_STRING_SIZE'")) {
136+
statement.executeQuery( "select property_value from database_properties "
137+
+ "where property_name = 'MAX_STRING_SIZE'" )) {
138138
return resultSet.next()
139-
&& "EXTENDED".equalsIgnoreCase(resultSet.getString(1));
139+
&& "EXTENDED".equalsIgnoreCase( resultSet.getString( 1 ) );
140140
}
141141
catch (SQLException ex) {
142142
return false;

0 commit comments

Comments
 (0)