diff --git a/pom.xml b/pom.xml index e514ba9d..d53880ac 100644 --- a/pom.xml +++ b/pom.xml @@ -36,7 +36,6 @@ 17 - false UTF-8 UTF-8 0.0.5 @@ -827,7 +826,7 @@ maven-javadoc-plugin 2.10.4 - -Xdoclint:none + -Xdoclint:-missing -quiet diff --git a/spring-ws-core/src/main/java/org/springframework/ws/client/core/WebServiceTemplate.java b/spring-ws-core/src/main/java/org/springframework/ws/client/core/WebServiceTemplate.java index c53a8c2b..5fd1da0f 100644 --- a/spring-ws-core/src/main/java/org/springframework/ws/client/core/WebServiceTemplate.java +++ b/spring-ws-core/src/main/java/org/springframework/ws/client/core/WebServiceTemplate.java @@ -94,14 +94,14 @@ import org.springframework.ws.transport.support.TransportUtils; *
  • Call {@link #hasError(WebServiceConnection,WebServiceMessage) hasError()} to check * if the connection has an error. For an HTTP transport, a status code other than * {@code 2xx} indicates an error. However, since a status code of 500 can also indicate a - * SOAP fault, the template verifies whether the error is not a fault.
  • + * SOAP fault, the template verifies whether the error is not a fault. * *
  • Invoke {@link WebServiceConnection#receive(WebServiceMessageFactory) receive} on - * the connection to read the response message, if any.
  • + * the connection to read the response message, if any. *