-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 5.0.9
-
Fix Version/s: 5.0.11
-
Component/s: tapestry-ioc
-
Labels:None
I have two modules. If both modules refer to each other with a @SubModule adding the first module seems to hang up the IOC container.
Example:
@SubModule(
{MySecondModule.class})
public class MyFirstModule {
}
@SubModule(
{MyFirstModule.class})
public class MySecondModule {
}