| 681 | constexpr char rulesCache[] = "/css_rules.cache"; |
| 682 | |
| 683 | bool CssParser::hasCache() const { return Storage.exists((cachePath + rulesCache).c_str()); } |
| 684 | |
| 685 | void CssParser::deleteCache() const { |
| 686 | if (hasCache()) Storage.remove((cachePath + rulesCache).c_str()); |
no test coverage detected