| 386 | } |
| 387 | |
| 388 | void |
| 389 | Config::sizeCacheRemove(std::string_view url) |
| 390 | { |
| 391 | if (m_oscache) { |
| 392 | DEBUG_LOG("Removing url from cache: %.*s", static_cast<int>(url.size()), url.data()); |
| 393 | m_oscache->remove(url); |
| 394 | } |
| 395 | } |
no test coverage detected