From cdf2ced1530c31e4635c86fc057aae59d7a821aa Mon Sep 17 00:00:00 2001 From: Manuel Jordan Elera Date: Thu, 6 Sep 2018 13:07:45 -0500 Subject: [PATCH] GH-2559: Fix InboundChannelAdapter's javadoc Resolves https://github.com/spring-projects/spring-integration/issues/2559 * Fixed minor typo that does not let generate the expected javadoc for a attribute/method **Cherry-pick to 5.0.x** --- .../integration/annotation/InboundChannelAdapter.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/annotation/InboundChannelAdapter.java b/spring-integration-core/src/main/java/org/springframework/integration/annotation/InboundChannelAdapter.java index e2be8acafe..3cd9e41e18 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/annotation/InboundChannelAdapter.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/annotation/InboundChannelAdapter.java @@ -67,9 +67,10 @@ public @interface InboundChannelAdapter { @AliasFor("value") String channel() default ""; - /* - {@code SmartLifecycle} options. - Can be specified as 'property placeholder', e.g. {@code ${foo.autoStartup}}. + /** + * {@code SmartLifecycle} options. + * Can be specified as 'property placeholder', e.g. {@code ${foo.autoStartup}}. + * @return if the channel adapter is started automatically or not. */ String autoStartup() default "true";