From 732990ee669858ad50333d12b2a6874791e6aa66 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 7 Mar 2016 15:21:46 -0500 Subject: [PATCH] Fix non-UTF-8 symbols https://build.spring.io/browse/INT-B43-113/ --- .../aggregator/AbstractCorrelatingMessageHandler.java | 2 +- .../integration/annotation/MessagingGateway.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/aggregator/AbstractCorrelatingMessageHandler.java b/spring-integration-core/src/main/java/org/springframework/integration/aggregator/AbstractCorrelatingMessageHandler.java index 9b02300620..475cc965f2 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/aggregator/AbstractCorrelatingMessageHandler.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/aggregator/AbstractCorrelatingMessageHandler.java @@ -81,7 +81,7 @@ import org.springframework.util.CollectionUtils; * @author Gary Russell * @author Artem Bilan * @author David Liu - * @author Enrique Rodríguez + * @author Enrique Rodriguez * @since 2.0 */ public abstract class AbstractCorrelatingMessageHandler extends AbstractMessageProducingHandler diff --git a/spring-integration-core/src/main/java/org/springframework/integration/annotation/MessagingGateway.java b/spring-integration-core/src/main/java/org/springframework/integration/annotation/MessagingGateway.java index ab897c9aa0..207b1f88ce 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/annotation/MessagingGateway.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/annotation/MessagingGateway.java @@ -25,7 +25,7 @@ import java.lang.annotation.Target; /** * A stereotype annotation to provide an Integration Messaging Gateway Proxy * ({@code }) as an abstraction over the messaging API. The target - * application’s business logic may be completely unaware of the Spring Integration + * application's business logic may be completely unaware of the Spring Integration * API, with the code interacting only via the interface. *

* Important: The {@link IntegrationComponentScan} annotation is required along with @@ -78,7 +78,7 @@ public @interface MessagingGateway { /** * Provides the amount of time dispatcher would wait to send a {@code Message}. * This timeout would only apply if there is a potential to block in the send call. - * For example if this gateway is hooked up to a {@code QueueChannel}.  + * For example if this gateway is hooked up to a {@code QueueChannel}. * @return the suggested timeout in milliseconds, if any */ String defaultRequestTimeout() default "-9223372036854775808";