Skip to content

Commit 7fe2229

Browse files
committed
Remove unused parameter.
1 parent 087789b commit 7fe2229

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseAutoConfiguration.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ public static class LiquibaseConfiguration {
9090

9191
@Bean
9292
@ConditionalOnMissingBean(LiquibaseConnectionDetails.class)
93-
PropertiesLiquibaseConnectionDetails liquibaseConnectionDetails(LiquibaseProperties properties,
94-
ObjectProvider<JdbcConnectionDetails> jdbcConnectionDetails) {
93+
PropertiesLiquibaseConnectionDetails liquibaseConnectionDetails(LiquibaseProperties properties) {
9594
return new PropertiesLiquibaseConnectionDetails(properties);
9695
}
9796

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* A configuration property name composed of elements separated by dots. User created
31-
* names may contain the characters "{@code a-z}" "{@code 0-9}") and "{@code -}", they
31+
* names may contain the characters "{@code a-z}" "{@code 0-9}" and "{@code -}", they
3232
* must be lower-case and must start with an alphanumeric character. The "{@code -}" is
3333
* used purely for formatting, i.e. "{@code foo-bar}" and "{@code foobar}" are considered
3434
* equivalent.

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/server/Encoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class Encoding {
6060
private Boolean forceResponse;
6161

6262
/**
63-
* Mapping of locale to charset for response encoding..
63+
* Mapping of locale to charset for response encoding.
6464
*/
6565
private Map<Locale, Charset> mapping;
6666

0 commit comments

Comments
 (0)