DATAKV-310 - Polishing.

Use consistent punctuation in asserts.
Update link to code of conduct.

Original Pull Request: #50
This commit is contained in:
Christoph Strobl
2020-07-15 07:08:41 +02:00
parent 72636fb4fc
commit 5c328f17c6
6 changed files with 22 additions and 22 deletions

View File

@@ -188,7 +188,7 @@ public class MapKeyValueAdapter extends AbstractKeyValueAdapter {
*/
protected Map<Object, Object> getKeySpaceMap(String keyspace) {
Assert.notNull(keyspace, "Collection must not be null for lookup.");
Assert.notNull(keyspace, "Collection must not be null for lookup!");
return store.computeIfAbsent(keyspace, k -> CollectionFactory.createMap(keySpaceMapType, 1000));
}