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
126126 {
127127 if ( registrationTokens == null )
128128 {
129- throw new ArgumentNullException ( "Registration tokens list must not be null" ) ;
129+ throw new ArgumentNullException ( "Registration token list must not be null" ) ;
130130 }
131131
132132 var count = registrationTokens . Count ;
133133 if ( count == 0 )
134134 {
135- throw new ArgumentException ( "Registration tokens list must not be empty" ) ;
135+ throw new ArgumentException ( "Registration token list must not be empty" ) ;
136136 }
137137
138138 if ( count > 1000 )
139139 {
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" ) ;
141141 }
142142
143143 foreach ( var registrationToken in registrationTokens )
You can’t perform that action at this time.
0 commit comments