diff --git a/OpenRA.Mods.Common/Util.cs b/OpenRA.Mods.Common/Util.cs index 29ea116984..829cd9340c 100644 --- a/OpenRA.Mods.Common/Util.cs +++ b/OpenRA.Mods.Common/Util.cs @@ -203,9 +203,6 @@ namespace OpenRA.Mods.Common if (t.IsSubclassOf(typeof(Array))) return "Multiple {0}".F(FriendlyTypeName(t.GetElementType())); - if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Primitives.Cache<,>)) - return "Cached<{0},{1}>".F(t.GetGenericArguments().Select(FriendlyTypeName).ToArray()); - if (t == typeof(int) || t == typeof(uint)) return "Integer";