Skip to content

Commit

Permalink
remove redundant protected (#1371)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Feb 16, 2024
1 parent 976d8f3 commit 0830091
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public Func<int, string> GetNextPartConverter()
/// <param name="number">The three-digit set to convert.</param>
/// <param name="thisIsLastSet">True if the current three-digit set is the last in the word.</param>
/// <returns>The same three-digit set expressed as text.</returns>
protected static string ThreeDigitSetConverter(int number, bool thisIsLastSet = false)
static string ThreeDigitSetConverter(int number, bool thisIsLastSet = false)
{
if (number == 0)
{
Expand Down

0 comments on commit 0830091

Please sign in to comment.