diff --git a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/adapter/method/dom/package.html b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/adapter/method/dom/package.html index 29182587..5bcb85a5 100644 --- a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/adapter/method/dom/package.html +++ b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/adapter/method/dom/package.html @@ -1,6 +1,6 @@
-Provides DOM-based implementations of the theMethodArgumentResolver and
+Provides DOM-based implementations of the MethodArgumentResolver and
MethodReturnValueHandler interfaces.
diff --git a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/annotation/PayloadRoot.java b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/annotation/PayloadRoot.java
index d1631537..69c71f75 100644
--- a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/annotation/PayloadRoot.java
+++ b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/annotation/PayloadRoot.java
@@ -24,7 +24,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
- * Marks an endpoint method as the handler for an incoming request. The annotation values signify the the request
+ * Marks an endpoint method as the handler for an incoming request. The annotation values signify the request
* payload root element that is handled by the method.
*
* @author Arjen Poutsma
diff --git a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractEndpointMapping.java b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractEndpointMapping.java
index 9cc205c8..99090fd6 100644
--- a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractEndpointMapping.java
+++ b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractEndpointMapping.java
@@ -50,7 +50,7 @@ public abstract class AbstractEndpointMapping extends ApplicationObjectSupport i
private SmartEndpointInterceptor[] smartInterceptors;
/**
- * Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
+ * Returns the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
*
* @return array of endpoint interceptors, or {@code null} if none
*/
diff --git a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMapBasedEndpointMapping.java b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMapBasedEndpointMapping.java
index dcd010a6..cad0e768 100644
--- a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMapBasedEndpointMapping.java
+++ b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMapBasedEndpointMapping.java
@@ -93,7 +93,7 @@ public abstract class AbstractMapBasedEndpointMapping extends AbstractEndpointMa
protected abstract boolean validateLookupKey(String key);
/**
- * Returns the the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
+ * Returns the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
*
* @return the registration key; or {@code null}
*/
diff --git a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java
index ffdc8e43..38627329 100644
--- a/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java
+++ b/spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java
@@ -70,7 +70,7 @@ public abstract class AbstractMethodEndpointMappingTo increase reading performance on the the SOAP request created by this message factory, you can set the {@link + *
To increase reading performance on the SOAP request created by this message factory, you can set the {@link
* #setPayloadCaching(boolean) payloadCaching} property to {@code false} (default is {@code true}). This this
* will read the contents of the body directly from the stream. However, when this setting is enabled, the
* payload can only be read once. This means that any endpoint mappings or interceptors which are based on the
diff --git a/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j/Wss4jSecurityInterceptor.java b/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j/Wss4jSecurityInterceptor.java
index a37ea082..9102444c 100644
--- a/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j/Wss4jSecurityInterceptor.java
+++ b/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j/Wss4jSecurityInterceptor.java
@@ -219,7 +219,7 @@ public class Wss4jSecurityInterceptor extends AbstractWsSecurityInterceptor impl
* value="{Content}{http://example.org/paymentv2}CreditCard;
* {Element}{}UserName" />
*
- * The the first entry of the list identifies the element {@code CreditCard} in the namespace
+ * The first entry of the list identifies the element {@code CreditCard} in the namespace
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
* namespace identifier, and the encryption modifier are case sensitive.
*
diff --git a/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java b/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java
index 9a91a618..cd6b5ee9 100644
--- a/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java
+++ b/spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java
@@ -217,7 +217,7 @@ public class Wss4jSecurityInterceptor extends AbstractWsSecurityInterceptor impl
* value="{Content}{http://example.org/paymentv2}CreditCard;
* {Element}{}UserName" />
*
- * The the first entry of the list identifies the element {@code CreditCard} in the namespace
+ * The first entry of the list identifies the element {@code CreditCard} in the namespace
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
* namespace identifier, and the encryption modifier are case sensitive.
*
diff --git a/spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppConnectionFactoryBean.java b/spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppConnectionFactoryBean.java
index 145ecc25..83da23f0 100644
--- a/spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppConnectionFactoryBean.java
+++ b/spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppConnectionFactoryBean.java
@@ -60,7 +60,7 @@ public class XmppConnectionFactoryBean implements FactoryBean Defaults to {@code 5222}.
*/
diff --git a/spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchema.java b/spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchema.java
index 628d0ac9..e1e378e5 100644
--- a/spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchema.java
+++ b/spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchema.java
@@ -90,7 +90,7 @@ public class CommonsXsdSchema implements XsdSchema {
@Override
public Source getSource() {
- // try to use the the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
+ // try to use the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
try {
XmlSchemaSerializer serializer = BeanUtils.instantiateClass(XmlSchemaSerializer.class);
if (collection != null) {