diff --git a/spring-expression/src/main/java/org/springframework/expression/ExpressionException.java b/spring-expression/src/main/java/org/springframework/expression/ExpressionException.java index 950956e8ee..4a08e64c41 100644 --- a/spring-expression/src/main/java/org/springframework/expression/ExpressionException.java +++ b/spring-expression/src/main/java/org/springframework/expression/ExpressionException.java @@ -88,7 +88,7 @@ public class ExpressionException extends RuntimeException { * @param cause the underlying cause of this exception */ public ExpressionException(int position, String message, Throwable cause) { - super(message,cause); + super(message, cause); this.position = position; } diff --git a/spring-test/src/main/java/org/springframework/test/web/servlet/request/MockHttpServletRequestBuilder.java b/spring-test/src/main/java/org/springframework/test/web/servlet/request/MockHttpServletRequestBuilder.java index 64a364c183..06287d56e6 100644 --- a/spring-test/src/main/java/org/springframework/test/web/servlet/request/MockHttpServletRequestBuilder.java +++ b/spring-test/src/main/java/org/springframework/test/web/servlet/request/MockHttpServletRequestBuilder.java @@ -66,9 +66,9 @@ import org.springframework.web.util.UriUtils; * *

Application tests will typically access this builder through the static factory * methods in {@link MockMvcRequestBuilders}. - *

Although this class cannot be extended, additional ways to initialize - * the {@code MockHttpServletRequest} can be plugged in via - * {@link #with(RequestPostProcessor)}. + * + *

Although this class cannot be extended, additional ways to initialize the + * {@code MockHttpServletRequest} can be plugged in via {@link #with(RequestPostProcessor)}. * * @author Rossen Stoyanchev * @author Arjen Poutsma @@ -159,6 +159,7 @@ public class MockHttpServletRequestBuilder this.url = url; } + /** * Add a request parameter to the {@link MockHttpServletRequest}. *

If called more than once, new values get added to existing ones.