| 25 | } |
| 26 | |
| 27 | bool Preferences::hasInt32(const std::string& key) const { |
| 28 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 29 | return preferences.hasInt32(bundle_key); |
| 30 | } |
| 31 | |
| 32 | bool Preferences::hasInt64(const std::string& key) const { |
| 33 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected