From 6453b4f67c612dd68fb486d56a39eac88545e340 Mon Sep 17 00:00:00 2001 From: Andrey Tretyak Date: Mon, 19 Jul 2021 03:57:10 +0100 Subject: [PATCH] Make TypeSymbol.cs/IsTupleTypeOfCardinality internal as mentioned in issue 48291 (#54911) --- 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 918b60bd5b723..3f8dae9399887 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) {