This commit is contained in:
Gabriele C
2016-05-19 23:06:55 +02:00
parent 4d634086cd
commit 95b65ae20a
3 changed files with 1 additions and 19 deletions
@@ -9,11 +9,6 @@ import javax.inject.Inject;
public abstract class InvalidPostConstruct {
public static final class WithParams {
@Inject
private AlphaService alphaService;
@Inject
private ProvidedClass providedClass;
WithParams() { }
@PostConstruct
@@ -41,9 +36,6 @@ public abstract class InvalidPostConstruct {
}
public static final class NotVoidReturnType {
@Inject
private ProvidedClass providedClass;
@PostConstruct
public int returnsInt() {
return 42;
@@ -51,9 +43,6 @@ public abstract class InvalidPostConstruct {
}
public static final class MultiplePostConstructs {
@Inject
private ProvidedClass providedClass;
@PostConstruct
public void postConstruct1() {
// --