From cbfadcdf61f105b3bbdc8a73f1569df388fa9a11 Mon Sep 17 00:00:00 2001 From: Manuel Jordan Elera Date: Thu, 6 Sep 2018 14:07:45 -0400 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** (cherry picked from commit cdf2ced1530c31e4635c86fc057aae59d7a821aa) --- .../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 bc4bfe1802..ace919aa85 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 @@ -68,9 +68,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";