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:
Taryn Hill
2015-04-02 12:40:40 -05:00
parent 87b7cc4527
commit 96d6ea79ce
5 changed files with 6 additions and 7 deletions

View File

@@ -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