Skip to content

Commit 32f2668

Browse files
authored
Remove duplicated "the" in Javadocs
1 parent 3f3a746 commit 32f2668

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

spring-integration-core/src/main/java/org/springframework/integration/core/MessageProducer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@ default void setOutputChannelName(String outputChannel) {
4646
}
4747

4848
/**
49-
* Return the the output channel.
49+
* Return the output channel.
5050
* @return the channel.
5151
* @since 4.3
5252
*/

spring-integration-http/src/main/java/org/springframework/integration/http/dsl/HttpInboundEndpointSupportSpec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2023 the original author or authors.
2+
* Copyright 2017-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -350,7 +350,7 @@ public RequestMappingSpec headers(String... headers) {
350350

351351
/**
352352
* The consumable media types of the mapped request, narrowing the primary mapping.
353-
* @param consumes the the media types for {@code Content-Type} header.
353+
* @param consumes the media types for {@code Content-Type} header.
354354
* @return the spec
355355
*/
356356
public RequestMappingSpec consumes(String... consumes) {

spring-integration-jdbc/src/main/java/org/springframework/integration/jdbc/StoredProcExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public void afterPropertiesSet() {
168168
Assert.isInstanceOf(ExpressionEvaluatingSqlParameterSourceFactory.class,
169169
this.sqlParameterSourceFactory,
170170
() -> "You are providing 'ProcedureParameters'. "
171-
+ "Was expecting the the provided 'sqlParameterSourceFactory' "
171+
+ "Was expecting the provided 'sqlParameterSourceFactory' "
172172
+ "to be an instance of 'ExpressionEvaluatingSqlParameterSourceFactory', "
173173
+ "however the provided one is of type '"
174174
+ this.sqlParameterSourceFactory.getClass().getName() + "'");

spring-integration-jms/src/main/java/org/springframework/integration/jms/dsl/JmsDefaultListenerContainerSpec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2020 the original author or authors.
2+
* Copyright 2016-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -148,7 +148,7 @@ public JmsDefaultListenerContainerSpec idleConsumerLimit(int idleConsumerLimit)
148148
}
149149

150150
/**
151-
* The the limit for idle task.
151+
* The limit for idle task.
152152
* @param idleTaskExecutionLimit the limit for idle task.
153153
* @return current {@link JmsDefaultListenerContainerSpec}.
154154
* @see DefaultMessageListenerContainer#setIdleTaskExecutionLimit(int)

spring-integration-mqtt/src/main/java/org/springframework/integration/mqtt/config/xml/MqttParserUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,8 +28,8 @@
2828

2929
/**
3030
* Contains various utility methods for parsing Mqtt Adapter
31-
* specific namespace elements as well as for the generation of the the
32-
* respective {@link org.springframework.beans.factory.config.BeanDefinition}s.
31+
* specific namespace elements as well as for the generation of the respective
32+
* {@link org.springframework.beans.factory.config.BeanDefinition}s.
3333
*
3434
* @author Gary Russell
3535
* @author Artem Bilan

spring-integration-websocket/src/main/java/org/springframework/integration/websocket/support/SubProtocolHandlerRegistry.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2019 the original author or authors.
2+
* Copyright 2014-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -153,7 +153,7 @@ public String resolveSessionId(Message<?> message) {
153153

154154
/**
155155
* Return the {@link List} of sub-protocols from provided {@link SubProtocolHandler}.
156-
* @return The the {@link List} of supported sub-protocols.
156+
* @return The {@link List} of supported sub-protocols.
157157
*/
158158
public List<String> getSubProtocols() {
159159
return new ArrayList<>(this.protocolHandlers.keySet());

0 commit comments

Comments
 (0)