From c218b6c6c74a4da816dc218881fd02d8e4be638a Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Sat, 6 Jun 2009 02:02:18 +0000 Subject: [PATCH] removed @Override annotations from interface methods --- .../annotation/ScheduledAnnotationBeanPostProcessor.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/org.springframework.context/src/main/java/org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor.java b/org.springframework.context/src/main/java/org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor.java index adbcfaac26..307fdf68c5 100644 --- a/org.springframework.context/src/main/java/org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor.java +++ b/org.springframework.context/src/main/java/org/springframework/scheduling/annotation/ScheduledAnnotationBeanPostProcessor.java @@ -82,7 +82,6 @@ public class ScheduledAnnotationBeanPostProcessor implements BeanPostProcessor, return bean; } ReflectionUtils.doWithMethods(targetClass, new MethodCallback() { - @Override public void doWith(Method method) throws IllegalArgumentException, IllegalAccessException { Scheduled annotation = AnnotationUtils.getAnnotation(method, Scheduled.class); if (annotation != null) { @@ -126,7 +125,6 @@ public class ScheduledAnnotationBeanPostProcessor implements BeanPostProcessor, return bean; } - @Override public void onApplicationEvent(ContextRefreshedEvent event) { if (scheduler != null) { this.registrar.setScheduler(scheduler); @@ -137,7 +135,6 @@ public class ScheduledAnnotationBeanPostProcessor implements BeanPostProcessor, this.registrar.afterPropertiesSet(); } - @Override public void destroy() throws Exception { if (this.registrar != null) { this.registrar.destroy();