Skip to content

Commit 22a0b76

Browse files
authored
Fix error in json storage logger (#10)
Signed-off-by: Chris Jackson <[email protected]>
1 parent 8a0ba3c commit 22a0b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.opensmarthouse.core.storage.json/src/main/java/org/openhab/core/storage/json/internal/StorageEntryMapDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public Map<String, StorageEntry> deserialize(JsonElement json, Type typeOfT, Jso
6969
throws JsonParseException {
7070
JsonObject obj = json.getAsJsonObject();
7171
if (!isOuterMap(obj)) {
72-
throw new IllegalArgumentException("Object {} is not an outer map: " + obj);
72+
throw new IllegalArgumentException("Object is not an outer map: " + obj);
7373
}
7474
return readOuterMap(obj, context);
7575
}

0 commit comments

Comments
 (0)