From d049467cc3c9c9fe4ca25dcd425f656ab4f4be8e Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 5 Jun 2024 16:20:39 +0200 Subject: [PATCH] remove warning --- LeStorage/StoredCollection.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LeStorage/StoredCollection.swift b/LeStorage/StoredCollection.swift index 27cb198..60b4068 100644 --- a/LeStorage/StoredCollection.swift +++ b/LeStorage/StoredCollection.swift @@ -428,7 +428,7 @@ public class StoredCollection: RandomAccessCollection, SomeCollecti /// Creates an API call for the Storable [instance] and an HTTP [method] fileprivate func _createCall(_ instance: T, method: HTTPMethod) throws -> ApiCall { - let baseURL = try _store.service().baseURL +// let baseURL = try _store.service().baseURL let jsonString = try instance.jsonString() return ApiCall(method: method, dataId: String(instance.id), body: jsonString) }