Fix IDE0062

This commit is contained in:
RoosterDragon
2023-04-05 19:13:22 +01:00
committed by Pavel Penev
parent 023d80b94d
commit cbd0583289
5 changed files with 6 additions and 6 deletions

View File

@@ -118,7 +118,7 @@ namespace OpenRA
var unresolved = source.ToHashSet();
unresolved.ExceptWith(resolved);
bool AreResolvable(Type a, Type b) => a.IsAssignableFrom(b);
static bool AreResolvable(Type a, Type b) => a.IsAssignableFrom(b);
// This query detects which unresolved traits can be immediately resolved as all their direct dependencies are met.
var more = unresolved.Where(u =>