Move savedNetworkConfig into HotspotManager and use constructor injection

This commit is contained in:
Torsten Grote
2021-05-26 09:28:07 -03:00
committed by Sebastian Kürten
parent e22e9dcade
commit a5d8faef3c
6 changed files with 128 additions and 103 deletions

View File

@@ -37,10 +37,4 @@ class SettingsManagerImpl implements SettingsManager {
public void mergeSettings(Settings s, String namespace) throws DbException {
db.transaction(false, txn -> db.mergeSettings(txn, s, namespace));
}
@Override
public void mergeSettings(Transaction txn, Settings s, String namespace)
throws DbException {
db.mergeSettings(txn, s, namespace);
}
}