Skip to content

Commit f7d032c

Browse files
committed
Polish formatting
1 parent 6c131ef commit f7d032c

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

spring-web/src/main/java/org/springframework/web/bind/support/WebExchangeBindException.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import org.springframework.validation.ObjectError;
3232
import org.springframework.web.server.ServerWebInputException;
3333

34-
3534
/**
3635
* {@link ServerWebInputException} subclass that indicates a data binding or
3736
* validation failure.
@@ -54,14 +53,13 @@ public WebExchangeBindException(MethodParameter parameter, BindingResult binding
5453

5554
/**
5655
* Return the BindingResult that this BindException wraps.
57-
* Will typically be a BeanPropertyBindingResult.
56+
* <p>Will typically be a BeanPropertyBindingResult.
5857
* @see BeanPropertyBindingResult
5958
*/
6059
public final BindingResult getBindingResult() {
6160
return this.bindingResult;
6261
}
6362

64-
6563
@Override
6664
public String getObjectName() {
6765
return this.bindingResult.getObjectName();
@@ -87,7 +85,6 @@ public void popNestedPath() throws IllegalStateException {
8785
this.bindingResult.popNestedPath();
8886
}
8987

90-
9188
@Override
9289
public void reject(String errorCode) {
9390
this.bindingResult.reject(errorCode);
@@ -125,7 +122,6 @@ public void addAllErrors(Errors errors) {
125122
this.bindingResult.addAllErrors(errors);
126123
}
127124

128-
129125
@Override
130126
public boolean hasErrors() {
131127
return this.bindingResult.hasErrors();
@@ -276,7 +272,6 @@ public String[] getSuppressedFields() {
276272
return this.bindingResult.getSuppressedFields();
277273
}
278274

279-
280275
/**
281276
* Returns diagnostic information about the errors held in this object.
282277
*/

spring-web/src/main/java/org/springframework/web/server/MissingRequestValueException.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616

1717
package org.springframework.web.server;
1818

19-
2019
import org.springframework.core.MethodParameter;
2120

22-
2321
/**
2422
* {@link ServerWebInputException} subclass that indicates a missing request
2523
* value such as a request header, cookie value, query parameter, etc.

spring-web/src/main/java/org/springframework/web/server/UnsatisfiedRequestParameterException.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.web.server;
1818

19-
2019
import java.util.List;
2120

2221
import org.springframework.util.MultiValueMap;

0 commit comments

Comments
 (0)