Skip to content

Commit 420e795

Browse files
Uxio0gregturn
authored andcommitted
SWS-948 Fix typo (duplicated the)
1 parent 2be6c50 commit 420e795

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<html>
22
<body>
3-
Provides DOM-based implementations of the the <code>MethodArgumentResolver</code> and
3+
Provides DOM-based implementations of the <code>MethodArgumentResolver</code> and
44
<code>MethodReturnValueHandler</code> interfaces.
55
</body>
66
</html>

spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/annotation/PayloadRoot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.lang.annotation.Target;
2525

2626
/**
27-
* Marks an endpoint method as the handler for an incoming request. The annotation values signify the the request
27+
* Marks an endpoint method as the handler for an incoming request. The annotation values signify the request
2828
* payload root element that is handled by the method.
2929
*
3030
* @author Arjen Poutsma

spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractEndpointMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public abstract class AbstractEndpointMapping extends ApplicationObjectSupport i
5050
private SmartEndpointInterceptor[] smartInterceptors;
5151

5252
/**
53-
* Returns the the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
53+
* Returns the endpoint interceptors to apply to all endpoints mapped by this endpoint mapping.
5454
*
5555
* @return array of endpoint interceptors, or {@code null} if none
5656
*/

spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMapBasedEndpointMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void setMappings(Properties mappings) {
9393
protected abstract boolean validateLookupKey(String key);
9494

9595
/**
96-
* Returns the the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
96+
* Returns the endpoint key for the given message context. Returns {@code null} if a key cannot be found.
9797
*
9898
* @return the registration key; or {@code null}
9999
*/

spring-ws-core/src/main/java/org/springframework/ws/server/endpoint/mapping/AbstractMethodEndpointMapping.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected Object getEndpointInternal(MessageContext messageContext) throws Excep
7070
}
7171

7272
/**
73-
* Returns the the endpoint keys for the given message context.
73+
* Returns the endpoint keys for the given message context.
7474
*
7575
* @return the registration keys
7676
*/
@@ -184,7 +184,7 @@ public void doWith(Method method) {
184184
}
185185

186186
/**
187-
* Returns the the endpoint key for the given method. Returns {@code null} if the method is not to be
187+
* Returns the endpoint key for the given method. Returns {@code null} if the method is not to be
188188
* registered, which is the default.
189189
*
190190
* @param method the method
@@ -196,7 +196,7 @@ protected T getLookupKeyForMethod(Method method) {
196196
}
197197

198198
/**
199-
* Returns the the endpoint keys for the given method. Should return an empty array if the method is not to be
199+
* Returns the endpoint keys for the given method. Should return an empty array if the method is not to be
200200
* registered. The default delegates to {@link #getLookupKeysForMethod(Method)}.
201201
*
202202
* @param method the method

spring-ws-core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessageFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* Axiom-specific implementation of the {@link org.springframework.ws.WebServiceMessageFactory WebServiceMessageFactory}
5858
* interface. Creates {@link org.springframework.ws.soap.axiom.AxiomSoapMessage AxiomSoapMessages}.
5959
*
60-
* <p>To increase reading performance on the the SOAP request created by this message factory, you can set the {@link
60+
* <p>To increase reading performance on the SOAP request created by this message factory, you can set the {@link
6161
* #setPayloadCaching(boolean) payloadCaching} property to {@code false} (default is {@code true}). This this
6262
* will read the contents of the body directly from the stream. However, <strong>when this setting is enabled, the
6363
* payload can only be read once</strong>. This means that any endpoint mappings or interceptors which are based on the

spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j/Wss4jSecurityInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public void setSecurementEncryptionKeyTransportAlgorithm(String securementEncryp
219219
* value="{Content}{http://example.org/paymentv2}CreditCard;
220220
* {Element}{}UserName" />
221221
* </pre>
222-
* The the first entry of the list identifies the element {@code CreditCard} in the namespace
222+
* The first entry of the list identifies the element {@code CreditCard} in the namespace
223223
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
224224
* namespace identifier, and the encryption modifier are case sensitive.
225225
*

spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2/Wss4jSecurityInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public void setSecurementEncryptionKeyTransportAlgorithm(String securementEncryp
217217
* value="{Content}{http://example.org/paymentv2}CreditCard;
218218
* {Element}{}UserName" />
219219
* </pre>
220-
* The the first entry of the list identifies the element {@code CreditCard} in the namespace
220+
* The first entry of the list identifies the element {@code CreditCard} in the namespace
221221
* {@code http://example.org/paymentv2}, and will encrypt its content. Be aware that the element name, the
222222
* namespace identifier, and the encryption modifier are case sensitive.
223223
*

spring-ws-support/src/main/java/org/springframework/ws/transport/xmpp/support/XmppConnectionFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void setHost(String host) {
6060
}
6161

6262
/**
63-
* Sets the the server port to connect to.
63+
* Sets the server port to connect to.
6464
*
6565
* <p>Defaults to {@code 5222}.
6666
*/

spring-xml/src/main/java/org/springframework/xml/xsd/commons/CommonsXsdSchema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public QName[] getElementNames() {
9090

9191
@Override
9292
public Source getSource() {
93-
// try to use the the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
93+
// try to use the package-friendly XmlSchemaSerializer first, fall back to slower stream-based version
9494
try {
9595
XmlSchemaSerializer serializer = BeanUtils.instantiateClass(XmlSchemaSerializer.class);
9696
if (collection != null) {

0 commit comments

Comments
 (0)