Skip to content

Commit b0aa6e1

Browse files
committed
Removed a useless remnant from an overridden fix.
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent a65f919 commit b0aa6e1

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/Generator/Types/TypeMapDatabase.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,6 @@ private void SetupTypeMaps(IEnumerable<System.Type> types,
5151

5252
public bool FindTypeMap(Type type, out TypeMap typeMap)
5353
{
54-
if (type.Desugar(resolveTemplateSubstitution: false) is
55-
TemplateParameterSubstitutionType)
56-
{
57-
typeMap = null;
58-
return false;
59-
}
60-
6154
if (typeMaps.ContainsKey(type))
6255
{
6356
typeMap = typeMaps[type];

0 commit comments

Comments
 (0)