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 afc0865436..54196c107e 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));