Commit f8c2657987bd09181695d1d15dd438e8e6221255
1 parent
dd5ca3ec
Exists in
master
Resolvendo a advertência do Sonar: Unused Imports
Showing
1 changed file
with
4 additions
and
6 deletions
Show diff stats
impl/core/src/main/java/br/gov/frameworkdemoiselle/exception/ExceptionHandler.java
| ... | ... | @@ -43,14 +43,12 @@ import java.lang.annotation.Inherited; |
| 43 | 43 | import java.lang.annotation.Retention; |
| 44 | 44 | import java.lang.annotation.Target; |
| 45 | 45 | |
| 46 | -import br.gov.frameworkdemoiselle.stereotype.BusinessController; | |
| 47 | -import br.gov.frameworkdemoiselle.stereotype.PersistenceController; | |
| 48 | -import br.gov.frameworkdemoiselle.stereotype.ViewController; | |
| 49 | - | |
| 50 | 46 | /** |
| 51 | 47 | * <p> |
| 52 | - * Should be used exclusively with controller objects, i.e., classes annotated with {@link ViewController}, | |
| 53 | - * {@link BusinessController}, or {@link PersistenceController}. | |
| 48 | + * Should be used exclusively with controller objects, i.e., classes annotated with | |
| 49 | + * {@link br.gov.frameworkdemoiselle.stereotype.ViewController}, | |
| 50 | + * {@link br.gov.frameworkdemoiselle.stereotype.BusinessController}, or | |
| 51 | + * {@link br.gov.frameworkdemoiselle.stereotype.PersistenceController}. | |
| 54 | 52 | * </p> |
| 55 | 53 | * <p> |
| 56 | 54 | * Methods that use this annotation will automatically handle all exceptions of a specific type thrown by the method | ... | ... |