| 22 | } |
| 23 | |
| 24 | Json Configuration::get(String const& key, Json def) const { |
| 25 | MutexLocker locker(m_mutex); |
| 26 | return m_currentConfig.get(key, def); |
| 27 | } |
| 28 | |
| 29 | Json Configuration::getPath(String const& path, Json def) const { |
| 30 | MutexLocker locker(m_mutex); |
no outgoing calls
no test coverage detected