diff --git a/OpenRA.Game/ObjectCreator.cs b/OpenRA.Game/ObjectCreator.cs index 3d8f85e58c..afb8f32f17 100644 --- a/OpenRA.Game/ObjectCreator.cs +++ b/OpenRA.Game/ObjectCreator.cs @@ -29,13 +29,6 @@ namespace OpenRA readonly Pair[] assemblies; readonly bool isMonoRuntime = Type.GetType("Mono.Runtime") != null; - public ObjectCreator(Assembly a) - { - typeCache = new Cache(FindType); - ctorCache = new Cache(GetCtor); - assemblies = a.GetNamespaces().Select(ns => Pair.New(a, ns)).ToArray(); - } - public ObjectCreator(Manifest manifest, FileSystem.FileSystem modFiles) { typeCache = new Cache(FindType);