| 351 | } |
| 352 | |
| 353 | bool Url::ValidateToken(const String& token, const String& symbols) |
| 354 | { |
| 355 | for (const char ch : token) { |
| 356 | if (symbols.FindFirstOf(ch) == String::NPos) |
| 357 | return false; |
| 358 | } |
| 359 | |
| 360 | return true; |
| 361 | } |
nothing calls this directly
no test coverage detected