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**
This commit is contained in:
Manuel Jordan Elera
2018-09-06 13:07:45 -05:00
committed by Artem Bilan
parent 6cc4fe530d
commit cdf2ced153

View File

@@ -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";