From bf842bd78138be71bae2f76d7096308d501b2af0 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Thu, 22 Nov 2018 21:35:58 -0800 Subject: [PATCH] Remove a couple unneeded Foundation imports that snuck in --- Sources/JSONAPI/Meta/Meta.swift | 2 -- Sources/JSONAPI/Resource/Transformer.swift | 2 -- 2 files changed, 4 deletions(-) diff --git a/Sources/JSONAPI/Meta/Meta.swift b/Sources/JSONAPI/Meta/Meta.swift index 8d035fe..f653edc 100644 --- a/Sources/JSONAPI/Meta/Meta.swift +++ b/Sources/JSONAPI/Meta/Meta.swift @@ -5,8 +5,6 @@ // Created by Mathew Polzin on 11/21/18. // -import Foundation - /// Conform a type to this protocol to indicate it can be encoded to or decoded from /// the meta data attached to a component of a JSON API document. Different meta data /// can be stored all over the place: On the root document, on a resource object, on diff --git a/Sources/JSONAPI/Resource/Transformer.swift b/Sources/JSONAPI/Resource/Transformer.swift index 13cc8fc..53755d1 100644 --- a/Sources/JSONAPI/Resource/Transformer.swift +++ b/Sources/JSONAPI/Resource/Transformer.swift @@ -5,8 +5,6 @@ // Created by Mathew Polzin on 11/17/18. // -import Foundation - public protocol Transformer { associatedtype From associatedtype To