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