Commit d452c8b7 by Daniel Dahan

development: updated JSON Equatable statement

parent 6e0b0ee5
......@@ -175,5 +175,5 @@ open class JSON: Equatable, CustomStringConvertible {
}
public func ==(lhs: JSON, rhs: JSON) -> Bool {
return JSON.stringify(lhs.object)! == JSON.stringify(rhs.object)!
return JSON.stringify(lhs.object) == JSON.stringify(rhs.object)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment