remove comment out

This commit is contained in:
Pfeil, Scott Robert 2020-03-20 10:20:01 -04:00
parent 8da16fe18b
commit fa48923e1f

View File

@ -70,11 +70,11 @@ public enum JSONValue: Codable, Equatable {
}
}
//public func ==(lhs: JSONValue, rhs: JSONValue) -> Bool {
// let ld = try! lhs.encode()
// let rd = try! lhs.encode()
// return ld == rd
//}
public func ==(lhs: JSONValue, rhs: JSONValue) -> Bool {
let ld = try! lhs.encode()
let rd = try! rhs.encode()
return ld == rd
}
extension JSONValue: ExpressibleByStringLiteral {
public init(stringLiteral value: String) {