Issue Type: Bug Bug
Affects Versions: 2.0.0.Beta3, 2.0.0.Beta2, 2.0.0.Beta1
Assignee: Jozef Hartinger
Created: 01/Feb/13 8:48 AM
Description:

Let's take the class hierarchy below:

@Singleton
public class Y extends X {
public X()

{ super(); }
}

public abstract class X {
public Y() { super(); }

@PostConstruct
public void init() throws Exception

{ ...(logging)... }

}

public class Main {
public static void main(String[] args) throws Exception

{ WeldContainer weld = new Weld().initialize(); weld.instance().select(Y.class).get(); }

}

When I execute this kind of code using org.jboss.weld.se.weld-se:2.0.0.Alpha3 I get all I was expecting to get (@PostConstruct method in X is executed).
However, when I execute the same code using org.jboss.weld.se.weld-se:2.0.0.Beta1 or above, the @PostConstruct method in X is never executed (nothing logged).

Environment: Java SE 1.6
Project: Weld
Priority: Major Major
Reporter: Thomas Penne
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira