[mapdb] Fix deserialization of values in mapDB database (#8758)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2020-10-15 18:02:20 +02:00 committed by GitHub
parent 2a14a9a37a
commit f90f91ff1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,10 @@
<name>openHAB Add-ons :: Bundles :: Persistence Service :: MapDB</name>
<properties>
<bnd.importpackage>org.openhab.core.library.types</bnd.importpackage>
</properties>
<dependencies>
<dependency>
<groupId>org.mapdb</groupId>

View File

@ -102,7 +102,6 @@ public class MapDbPersistenceService implements QueryablePersistenceService {
if (db != null) {
db.close();
}
threadPool.shutdown();
}
@Override