Skip to content

Commit 1a56eb7

Browse files
committed
Removed final from variable declaration.
1 parent 60024bd commit 1a56eb7

File tree

1 file changed

+1
-1
lines changed
  • spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/query

1 file changed

+1
-1
lines changed

Diff for: spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/query/QueryMapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private Condition mapCondition(CriteriaDefinition criteria, MapSqlParameterSourc
298298
&& ((MetadataBackedField) propertyField).property != null //
299299
&& (criteria.getValue() == null || !criteria.getValue().getClass().isArray())) {
300300

301-
final RelationalPersistentProperty property = ((MetadataBackedField) propertyField).property;
301+
RelationalPersistentProperty property = ((MetadataBackedField) propertyField).property;
302302
JdbcValue jdbcValue = convertSpecial(property, criteria.getValue());
303303
mappedValue = jdbcValue.getValue();
304304
sqlType = jdbcValue.getJdbcType() != null ? jdbcValue.getJdbcType().getVendorTypeNumber()

0 commit comments

Comments
 (0)