File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
FirebaseAdmin/FirebaseAdmin/Messaging Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,18 +126,18 @@ private void ValidateRegistrationTokenList(IReadOnlyList<string> registrationTok
126
126
{
127
127
if ( registrationTokens == null )
128
128
{
129
- throw new ArgumentNullException ( "Registration tokens list must not be null" ) ;
129
+ throw new ArgumentNullException ( "Registration token list must not be null" ) ;
130
130
}
131
131
132
132
var count = registrationTokens . Count ;
133
133
if ( count == 0 )
134
134
{
135
- throw new ArgumentException ( "Registration tokens list must not be empty" ) ;
135
+ throw new ArgumentException ( "Registration token list must not be empty" ) ;
136
136
}
137
137
138
138
if ( count > 1000 )
139
139
{
140
- throw new ArgumentException ( "Registration tokens list must not contain more than 1000 tokens" ) ;
140
+ throw new ArgumentException ( "Registration token list must not contain more than 1000 tokens" ) ;
141
141
}
142
142
143
143
foreach ( var registrationToken in registrationTokens )
You can’t perform that action at this time.
0 commit comments