Skip to content

Commit

Permalink
Make TypeSymbol.cs/IsTupleTypeOfCardinality internal as mentioned in …
Browse files Browse the repository at this point in the history
…issue 48291 (#54911)
  • Loading branch information
AndreyTretyak committed Jul 19, 2021
1 parent 9aec365 commit 6453b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compilers/CSharp/Portable/Symbols/TypeSymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
/// </summary>
public bool IsTupleTypeOfCardinality(int targetCardinality)
internal bool IsTupleTypeOfCardinality(int targetCardinality)
{
if (IsTupleType)
{
Expand Down

0 comments on commit 6453b4f

Please sign in to comment.