fix nullness violation in MapDB test (#881)

Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
pull/893/head
Markus Rathgeb 2019-06-20 21:23:53 +02:00 committed by Kai Kreuzer
parent b897de2f5e
commit bf9f86354b
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}