From d142fec5011934ee6dc66c64142e36a5f8710e28 Mon Sep 17 00:00:00 2001 From: dodgex Date: Sun, 2 Mar 2014 12:52:22 +0100 Subject: [PATCH] handle @Extra after @Bean --- .../java/org/androidannotations/handler/AnnotationHandlers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java b/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java index f638e008e6..93435386d3 100644 --- a/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java +++ b/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java @@ -70,7 +70,6 @@ public AnnotationHandlers(ProcessingEnvironment processingEnvironment) { add(new ResHandler(androidRes, processingEnvironment)); } add(new TransactionalHandler(processingEnvironment)); - add(new ExtraHandler(processingEnvironment)); add(new FragmentArgHandler(processingEnvironment)); add(new SystemServiceHandler(processingEnvironment)); add(new RestHandler(processingEnvironment)); @@ -92,6 +91,7 @@ public AnnotationHandlers(ProcessingEnvironment processingEnvironment) { add(new RootContextHanlder(processingEnvironment)); add(new NonConfigurationInstanceHandler(processingEnvironment)); add(new BeanHandler(processingEnvironment)); + add(new ExtraHandler(processingEnvironment)); add(new BeforeTextChangeHandler(processingEnvironment)); add(new TextChangeHandler(processingEnvironment)); add(new AfterTextChangeHandler(processingEnvironment));