injector: Allow injection of <init> and <clinit>

This commit is contained in:
Max Weber
2018-02-11 14:06:37 -07:00
parent db834506d6
commit d8e4fe13c5

View File

@@ -30,7 +30,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.FIELD})
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR})
public @interface Inject
{