fix nullness violation in MapDB test (#881)
Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>pull/893/head
parent
b897de2f5e
commit
bf9f86354b
|
@ -75,7 +75,7 @@ public class MapDbStorageServiceTest {
|
||||||
configuration.put(key, value);
|
configuration.put(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Object get(String key) {
|
public @Nullable Object get(String key) {
|
||||||
return configuration.get(key);
|
return configuration.get(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue