Minimize default injection priority

This commit is contained in:
Gabriel Tofvesson 2021-01-30 17:02:44 +01:00
parent 092976ee5c
commit 758a94f02d

View File

@ -31,5 +31,5 @@ public @interface Inject {
*/
boolean acceptOriginalReturn() default false;
int priority() default Integer.MIN_VALUE;
int priority() default Integer.MAX_VALUE;
}