From a6231a9df99b21129be6517be0c6e311b3d9c19c Mon Sep 17 00:00:00 2001 From: Cristian A Monterroza Date: Sun, 17 Nov 2024 11:57:22 -0800 Subject: [PATCH] Update Bundle+Decode.swift --- Sources/WrkstrmFoundation/Persistence/Bundle+Decode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WrkstrmFoundation/Persistence/Bundle+Decode.swift b/Sources/WrkstrmFoundation/Persistence/Bundle+Decode.swift index 7043556..5edbbc3 100644 --- a/Sources/WrkstrmFoundation/Persistence/Bundle+Decode.swift +++ b/Sources/WrkstrmFoundation/Persistence/Bundle+Decode.swift @@ -41,7 +41,7 @@ extension Bundle { Log.foundation.guard("Failed to load \(file) from bundle.") } - let decoder = decoder + let decoder: JSONDecoder = decoder do { return try decoder.decode(T.self, from: data)