remove change

This commit is contained in:
Pfeil, Scott Robert 2020-03-20 10:21:06 -04:00
parent fa48923e1f
commit bab6621492

View File

@ -71,8 +71,8 @@ public enum JSONValue: Codable, Equatable {
}
public func ==(lhs: JSONValue, rhs: JSONValue) -> Bool {
let ld = try! lhs.encode()
let rd = try! rhs.encode()
let ld = try? lhs.encode()
let rd = try? rhs.encode()
return ld == rd
}