diff --git a/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java b/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java index 6805971bca..0c8b3ef4e7 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java @@ -36,16 +36,4 @@ import java.lang.annotation.Target; @Handler public @interface Router { - /** - * String value representing the name of the property that should be passed - * into the router method. This and 'attribute' should not both be provided. - */ - String property() default ""; - - /** - * String value representing the name of the attribute that should be passed - * into the router method. This and 'property' should not both be provided. - */ - String attribute() default ""; - }