| 348 | } |
| 349 | |
| 350 | String URL::getQueryString() const |
| 351 | { |
| 352 | if (parameterNames.size() > 0) |
| 353 | return "?" + URLHelpers::getMangledParameters (*this); |
| 354 | |
| 355 | return {}; |
| 356 | } |
| 357 | |
| 358 | String URL::getScheme() const |
| 359 | { |
nothing calls this directly
no test coverage detected