Skip to content

Commit

Permalink
Simplify parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorPilley committed Nov 6, 2023
1 parent 2b3e50e commit c99658d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ internal abstract class InternationalPhoneNumberFormatter : PhoneNumberFormatter
protected string Format(
PhoneNumber phoneNumber,
string? outputPrefix = null,
Char charBetweenCallingCodeAndNsn = Chars.Null,
Char nonDigitSubstitute = Chars.Null)
char charBetweenCallingCodeAndNsn = Chars.Null,
char nonDigitSubstitute = Chars.Null)
{
var nsnMask = phoneNumber.Country.FormatProvider.GetFormat(phoneNumber, international: true);

Expand Down

0 comments on commit c99658d

Please sign in to comment.