From 2a3ca619f979476aee8e0a0d298fb8ab847a4aa8 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 17 Dec 2013 12:40:21 +0100 Subject: [PATCH] Polishing Issue: SPR-11221 --- .../springframework/web/bind/annotation/ControllerAdvice.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerAdvice.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerAdvice.java index 0180582436..7423c9cca3 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerAdvice.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerAdvice.java @@ -97,15 +97,12 @@ public @interface ControllerAdvice { */ Class[] assignableTypes() default {}; - /** * Array of annotations. * Controllers that are annotated with this/one of those annotation(s) * will be assisted by the {@code @ControllerAdvice} annotated class. - * *

Consider creating a special annotation or use a predefined one, * like {@link RestController @RestController}. - * * @since 4.0 */ Class[] annotations() default {};