mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
fix nullness violation in MapDB test (#881)
Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
This commit is contained in:
committed by
Kai Kreuzer
parent
b897de2f5e
commit
bf9f86354b
+1
-1
@@ -75,7 +75,7 @@ public class MapDbStorageServiceTest {
|
||||
configuration.put(key, value);
|
||||
}
|
||||
|
||||
public Object get(String key) {
|
||||
public @Nullable Object get(String key) {
|
||||
return configuration.get(key);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user