| 86 | } |
| 87 | |
| 88 | StringBox getString(const StringBox& key, const StringBox& fallback) override { |
| 89 | return config.getMapValue(key).toStringBox(); |
| 90 | } |
| 91 | |
| 92 | bool getBool(const StringBox& key, bool fallback) override { |
| 93 | return config.getMapValue(key).toBool(); |
nothing calls this directly
no test coverage detected