Skip to content

Commit

Permalink
Delete dead PemEncoding.IsBase64Character method (#89697)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub authored Jul 30, 2023
1 parent bd83e17 commit 836d166
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,6 @@ private static bool TryCountBase64(
return false;
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static bool IsBase64Character(char ch)
{
return char.IsAsciiLetterOrDigit(ch) || ch is '+' or '/';
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static bool IsWhiteSpaceCharacter(char ch)
{
Expand Down

0 comments on commit 836d166

Please sign in to comment.