Fixes #1264: Does not crash on missing RF API

This commit is contained in:
thatsIch
2015-04-13 19:28:53 +02:00
parent 817163dbf6
commit 071ae6d680
13 changed files with 120 additions and 100 deletions
@@ -46,16 +46,16 @@ public enum IntegrationRegistry
public void init()
{
for( IntegrationNode node : this.modules )
node.Call( IntegrationStage.PRE_INIT );
node.call( IntegrationStage.PRE_INIT );
for( IntegrationNode node : this.modules )
node.Call( IntegrationStage.INIT );
node.call( IntegrationStage.INIT );
}
public void postInit()
{
for( IntegrationNode node : this.modules )
node.Call( IntegrationStage.POST_INIT );
node.call( IntegrationStage.POST_INIT );
}
public String getStatus()