| 20 | } |
| 21 | |
| 22 | bool Preferences::hasBool(const std::string& key) const { |
| 23 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 24 | return preferences.hasBool(bundle_key); |
| 25 | } |
| 26 | |
| 27 | bool Preferences::hasInt32(const std::string& key) const { |
| 28 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected