summaryrefslogtreecommitdiff
path: root/src/shared/json/json.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/json/json.cpp')
-rw-r--r--src/shared/json/json.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shared/json/json.cpp b/src/shared/json/json.cpp
index 048cd46e4..c5eac719b 100644
--- a/src/shared/json/json.cpp
+++ b/src/shared/json/json.cpp
@@ -3650,8 +3650,7 @@ bool JsonDocument::operator==(const JsonDocument &other) const
if (d->header->root()->isObject())
return JsonObject(d, static_cast<Internal::Object *>(d->header->root()))
== JsonObject(other.d, static_cast<Internal::Object *>(other.d->header->root()));
- else
- return JsonArray(d, static_cast<Internal::Array *>(d->header->root()))
+ return JsonArray(d, static_cast<Internal::Array *>(d->header->root()))
== JsonArray(other.d, static_cast<Internal::Array *>(other.d->header->root()));
}
@@ -4209,7 +4208,7 @@ bool Parser::parseArray()
char token = nextToken();
if (token == EndArray)
break;
- else if (token != ValueSeparator) {
+ if (token != ValueSeparator) {
if (!eatSpace())
lastError = JsonParseError::UnterminatedArray;
else