Closed ghost closed 9 years ago
The jsonObject variable declared on Line 1398 of SimpleJson.cs is superfluous because it is only being used as a reference to the objects variable.
jsonObject
objects
To fix this, the objects variable could be renamed to valueAsIDict and the declaration of jsonObject on line 1398 could be removed.
valueAsIDict
(Same thing for the valueAsList / jsonObject variables in the next section down starting at Line 1437.)
valueAsList
Sorry for not making a pull request yet, I may do so at some point in the future.
Closing issues on projects that don't seem to have a maintainer.
The
jsonObject
variable declared on Line 1398 of SimpleJson.cs is superfluous because it is only being used as a reference to theobjects
variable.To fix this, the
objects
variable could be renamed tovalueAsIDict
and the declaration ofjsonObject
on line 1398 could be removed.(Same thing for the
valueAsList
/jsonObject
variables in the next section down starting at Line 1437.)