MoveToImmutable -> ToImmutable

This commit is contained in:
Evil Factory
2026-01-24 19:01:59 -03:00
committed by Maplewheels
parent 6faf1a0fcb
commit 8dc58445f9

View File

@@ -193,7 +193,7 @@ public sealed class ModConfigService : IModConfigService
}
resources.Add(result.Value);
}
return resources.MoveToImmutable();
return resources.ToImmutable();
}
ImmutableArray<ResourceParserInfo> GetResourceElementsWithName(ContentPackage package, XElement root, string elemName, string groupName)
@@ -221,7 +221,7 @@ public sealed class ModConfigService : IModConfigService
}
}
return elems.MoveToImmutable();
return elems.ToImmutable();
}
ImmutableArray<Identifier> GetDependencyIdentifiers(XElement fg, bool depsLoadedSetting)