[mapdb] Fix deserialization of values in mapDB database (#8758)
Signed-off-by: Kai Kreuzer <kai@openhab.org>pull/8801/head
parent
2a14a9a37a
commit
f90f91ff1f
|
@ -14,6 +14,10 @@
|
||||||
|
|
||||||
<name>openHAB Add-ons :: Bundles :: Persistence Service :: MapDB</name>
|
<name>openHAB Add-ons :: Bundles :: Persistence Service :: MapDB</name>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<bnd.importpackage>org.openhab.core.library.types</bnd.importpackage>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mapdb</groupId>
|
<groupId>org.mapdb</groupId>
|
||||||
|
|
|
@ -102,7 +102,6 @@ public class MapDbPersistenceService implements QueryablePersistenceService {
|
||||||
if (db != null) {
|
if (db != null) {
|
||||||
db.close();
|
db.close();
|
||||||
}
|
}
|
||||||
threadPool.shutdown();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue