Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/src/TypeSystem/Ecma/EcmaType.cs')
-rw-r--r--src/Common/src/TypeSystem/Ecma/EcmaType.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Common/src/TypeSystem/Ecma/EcmaType.cs b/src/Common/src/TypeSystem/Ecma/EcmaType.cs
index aa308aa2a..5c8d7533f 100644
--- a/src/Common/src/TypeSystem/Ecma/EcmaType.cs
+++ b/src/Common/src/TypeSystem/Ecma/EcmaType.cs
@@ -194,15 +194,6 @@ namespace Internal.TypeSystem.Ecma
{
TypeFlags flags = 0;
- if ((mask & TypeFlags.ContainsGenericVariablesComputed) != 0)
- {
- flags |= TypeFlags.ContainsGenericVariablesComputed;
-
- // TODO: Do we really want to get the instantiation to figure out whether the type is generic?
- if (this.HasInstantiation)
- flags |= TypeFlags.ContainsGenericVariables;
- }
-
if ((mask & TypeFlags.CategoryMask) != 0)
{
TypeDesc baseType = this.BaseType;