Remove unused parameter and polish javadoc

See gh-40955
This commit is contained in:
Ahmed Ashour 2024-05-30 13:19:03 +02:00 committed by Scott Frederick
parent 0be290d6f7
commit f000af6a12
3 changed files with 5 additions and 6 deletions

View File

@ -89,8 +89,7 @@ public class LiquibaseAutoConfiguration {
@Bean
@ConditionalOnMissingBean(LiquibaseConnectionDetails.class)
PropertiesLiquibaseConnectionDetails liquibaseConnectionDetails(LiquibaseProperties properties,
ObjectProvider<JdbcConnectionDetails> jdbcConnectionDetails) {
PropertiesLiquibaseConnectionDetails liquibaseConnectionDetails(LiquibaseProperties properties) {
return new PropertiesLiquibaseConnectionDetails(properties);
}

View File

@ -28,9 +28,9 @@ import org.springframework.util.StringUtils;
/**
* A configuration property name composed of elements separated by dots. User created
* names may contain the characters "{@code a-z}" "{@code 0-9}") and "{@code -}", they
* must be lower-case and must start with an alphanumeric character. The "{@code -}" is
* used purely for formatting, i.e. "{@code foo-bar}" and "{@code foobar}" are considered
* names may contain the characters "{@code a-z}" "{@code 0-9}" and "{@code -}", they must
* be lower-case and must start with an alphanumeric character. The "{@code -}" is used
* purely for formatting, i.e. "{@code foo-bar}" and "{@code foobar}" are considered
* equivalent.
* <p>
* The "{@code [}" and "{@code ]}" characters may be used to indicate an associative

View File

@ -60,7 +60,7 @@ public class Encoding {
private Boolean forceResponse;
/**
* Mapping of locale to charset for response encoding..
* Mapping of locale to charset for response encoding.
*/
private Map<Locale, Charset> mapping;