Polishing

This commit is contained in:
Juergen Hoeller
2026-01-28 17:09:02 +01:00
parent 7da65fe4fc
commit 5d33de943b
2 changed files with 2 additions and 2 deletions
@@ -419,7 +419,7 @@ public class LocalValidatorFactoryBean extends SpringValidatorAdapter
return super.unwrap(type);
}
catch (ValidationException ignored) {
// we'll try ValidatorFactory unwrapping next
// Trying ValidatorFactory unwrapping next
}
}
if (this.validatorFactory != null) {
@@ -79,7 +79,7 @@ final class DefaultJdbcClient implements JdbcClient {
}
public DefaultJdbcClient(NamedParameterJdbcOperations jdbcTemplate, @Nullable ConversionService conversionService) {
Assert.notNull(jdbcTemplate, "JdbcTemplate must not be null");
Assert.notNull(jdbcTemplate, "NamedParameterJdbcTemplate must not be null");
this.namedParamOps = jdbcTemplate;
this.conversionService =
(conversionService != null ? conversionService : DefaultConversionService.getSharedInstance());