diff options
author | Nikola Knezevic <nikola@dfinity.org> | 2020-01-06 16:30:56 +0100 |
---|---|---|
committer | Nikola Knezevic <nikola@dfinity.org> | 2020-01-07 00:09:58 +0100 |
commit | cb2d348d48cfd66fa34edd5df8c255cf74170a84 (patch) | |
tree | 953601f805a1f1feac4951dc5659de5811c8cea8 /src/libexpr/json-to-value.cc | |
parent | bc22a7ee6a6d9367f3197cf31a5fdd477b155974 (diff) |
Remove redundant check in parseJSONString
Diffstat (limited to 'src/libexpr/json-to-value.cc')
-rw-r--r-- | src/libexpr/json-to-value.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libexpr/json-to-value.cc b/src/libexpr/json-to-value.cc index 8bae986f9..96cd0fc72 100644 --- a/src/libexpr/json-to-value.cc +++ b/src/libexpr/json-to-value.cc @@ -22,7 +22,6 @@ static string parseJSONString(const char * & s) if (*s == '"') res += '"'; else if (*s == '\\') res += '\\'; else if (*s == '/') res += '/'; - else if (*s == '/') res += '/'; else if (*s == 'b') res += '\b'; else if (*s == 'f') res += '\f'; else if (*s == 'n') res += '\n'; |