forked from lix-project/lix
Remove redundant check in parseJSONString
This commit is contained in:
parent
bc22a7ee6a
commit
cb2d348d48
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue