From f5321cd62b7e353d05678ae95af7cb88426b8f63 Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Tue, 30 Aug 2022 20:43:14 +0100
Subject: [PATCH] Make JSONEncoder & JSONDecoder internal

to avoid name collisions when using XXClient library
---
 Sources/XXClient/Helpers/JSONDecoder.swift | 6 +++---
 Sources/XXClient/Helpers/JSONEncoder.swift | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Sources/XXClient/Helpers/JSONDecoder.swift b/Sources/XXClient/Helpers/JSONDecoder.swift
index fc92d05f..751a8b39 100644
--- a/Sources/XXClient/Helpers/JSONDecoder.swift
+++ b/Sources/XXClient/Helpers/JSONDecoder.swift
@@ -1,12 +1,12 @@
 import CustomDump
 import Foundation
 
-public class JSONDecoder: Foundation.JSONDecoder {
-  public override init() {
+class JSONDecoder: Foundation.JSONDecoder {
+  override init() {
     super.init()
   }
 
-  public override func decode<T>(_ type: T.Type, from data: Data) throws -> T where T: Decodable {
+  override func decode<T>(_ type: T.Type, from data: Data) throws -> T where T: Decodable {
     do {
       let data = convertNumberToString(in: data, at: "Value")
       return try super.decode(type, from: data)
diff --git a/Sources/XXClient/Helpers/JSONEncoder.swift b/Sources/XXClient/Helpers/JSONEncoder.swift
index ba9c2a31..69b36859 100644
--- a/Sources/XXClient/Helpers/JSONEncoder.swift
+++ b/Sources/XXClient/Helpers/JSONEncoder.swift
@@ -1,12 +1,12 @@
 import CustomDump
 import Foundation
 
-public class JSONEncoder: Foundation.JSONEncoder {
-  public override init() {
+class JSONEncoder: Foundation.JSONEncoder {
+  override init() {
     super.init()
   }
 
-  public override func encode<T>(_ value: T) throws -> Data where T: Encodable {
+  override func encode<T>(_ value: T) throws -> Data where T: Encodable {
     do {
       var data = try super.encode(value)
       data = convertStringToNumber(in: data, at: "Value")
-- 
GitLab