You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/BindResult.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@
26
26
importorg.springframework.util.ObjectUtils;
27
27
28
28
/**
29
-
* A container object to return result of a {@link Binder} bind operation. May contain
29
+
* A container object to return the result of a {@link Binder} bind operation. May contain
30
30
* either a successfully bound object or an empty result.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/Binder.java
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ public Binder(Iterable<ConfigurationPropertySource> sources) {
97
97
/**
98
98
* Create a new {@link Binder} instance for the specified sources.
99
99
* @param sources the sources used for binding
100
-
* @param placeholdersResolver strategy to resolve any property place-holders
100
+
* @param placeholdersResolver strategy to resolve any property placeholders
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/PlaceholdersResolver.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,9 @@ public interface PlaceholdersResolver {
35
35
PlaceholdersResolverNONE = (value) -> value;
36
36
37
37
/**
38
-
* Called to resolve any place holders in the given value.
38
+
* Called to resolve any placeholders in the given value.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/ReactiveWebServerApplicationContext.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -189,7 +189,7 @@ public void setServerNamespace(String serverNamespace) {
189
189
190
190
/**
191
191
* Internal class used to manage the server and the {@link HttpHandler}, taking care
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/reactive/context/AnnotationConfigReactiveWebServerApplicationContextTests.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ public ReactiveWebServerFactory webServerFactory() {
135
135
}
136
136
137
137
@Bean
138
-
publicHttpHandlerhttpHander() {
138
+
publicHttpHandlerhttpHandler() {
139
139
if (!addedListener) {
140
140
thrownewRuntimeException(
141
141
"Handlers should be added after listeners, we're being initialized too early!");
0 commit comments