From 91569f7de54d70964cb185e6e4927a2508adce2c 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 7290382108..0a3939bd3e 100644 --- a/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java +++ b/AndroidAnnotations/androidannotations/src/main/java/org/androidannotations/handler/AnnotationHandlers.java @@ -80,7 +80,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)); @@ -102,6 +101,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));