I don't know this is a problem but while checking DotNetNuke 4.9 source code i just noticed this:
Visual Studio suggest me to fix an error at line 872 of EditModuleDefinition.ascx.vb
objModuleControlInfo = CType(objModuleControls.GetModuleControls(objModuleDefInfo.ModuleDefID).Item(0), ModuleControlInfo)
it advices following replacement for the line above
objModuleControlInfo = CType(ModuleControlController.GetModuleControls(objModuleDefInfo.ModuleDefID).Item(0), ModuleControlInfo)
Any advice on how to proceed?