Remove explicit private.
Remove unnecessary delegate. Use extension method syntax. Fix HealthInfo.NotifyAppliedDamage’s desc. Remove unused using directives. Remove explicit type declaration in Manifest.
This commit is contained in:
@@ -167,7 +167,7 @@ namespace OpenRA
|
||||
throw new InvalidDataException("`{0}` is not a valid mod manifest entry.".F(kv.Key));
|
||||
|
||||
IGlobalModData module;
|
||||
var ctor = t.GetConstructor(new Type[] { typeof(MiniYaml) });
|
||||
var ctor = t.GetConstructor(new[] { typeof(MiniYaml) });
|
||||
if (ctor != null)
|
||||
{
|
||||
// Class has opted-in to DIY initialization
|
||||
|
||||
Reference in New Issue
Block a user