| 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()); |
| 687 | } |
| 688 | |
| 689 | bool CssParser::saveToCache() const { |
| 690 | if (cachePath.empty()) { |