From 60983e2221d46d7d84e3b8c7aacdc7ee1b8efa36 Mon Sep 17 00:00:00 2001 From: Andrey Tretyak Date: Mon, 19 Jul 2021 01:25:54 +0100 Subject: [PATCH] Make TypeSymbol.cs/IsTupleTypeOfCardinality internal as mentioned in issue 48291 --- src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs b/src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs index 755781e851806..3ad31220ed106 100644 --- a/src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs +++ b/src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs @@ -567,7 +567,7 @@ public virtual bool IsAnonymousType /// Verify if the given type is a tuple of a given cardinality, or can be used to back a tuple type /// with the given cardinality. /// - public bool IsTupleTypeOfCardinality(int targetCardinality) + internal bool IsTupleTypeOfCardinality(int targetCardinality) { if (IsTupleType) {