From fa48923e1fd251a43267c47f77eacd547a8b9c33 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Fri, 20 Mar 2020 10:20:01 -0400 Subject: [PATCH] remove comment out --- MVMCore/MVMCore/Models/JSON/JSONValue.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MVMCore/MVMCore/Models/JSON/JSONValue.swift b/MVMCore/MVMCore/Models/JSON/JSONValue.swift index 4c44839..25474eb 100644 --- a/MVMCore/MVMCore/Models/JSON/JSONValue.swift +++ b/MVMCore/MVMCore/Models/JSON/JSONValue.swift @@ -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) {