Skip to content

Commit

Permalink
Fix using directive is unneccesary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Jun 3, 2022
1 parent d2dfbe2 commit 50498e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions OpenRA.Game/ObjectCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using System.Linq;
using System.Reflection;
using OpenRA.Primitives;
using OpenRA.Support;

namespace OpenRA
{
Expand Down Expand Up @@ -61,7 +60,7 @@ void LoadAssembly(List<Assembly> assemblyList, string resolvedPath)
if (!ResolvedAssemblies.TryGetValue(hash, out var assembly))
{
#if NET5_0_OR_GREATER
var loader = new AssemblyLoader(resolvedPath);
var loader = new Support.AssemblyLoader(resolvedPath);
assembly = loader.LoadDefaultAssembly();
ResolvedAssemblies.Add(hash, assembly);
#else
Expand Down

0 comments on commit 50498e1

Please sign in to comment.