From df1a662accec86a3f8a6b3911b53f352d7247f16 Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sat, 18 Feb 2023 20:25:58 -0800 Subject: [PATCH] FetchTrustedSourcesOperation: Remove redundant if statement --- AltStore/Operations/FetchTrustedSourcesOperation.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/AltStore/Operations/FetchTrustedSourcesOperation.swift b/AltStore/Operations/FetchTrustedSourcesOperation.swift index 9fced831..ac58069b 100644 --- a/AltStore/Operations/FetchTrustedSourcesOperation.swift +++ b/AltStore/Operations/FetchTrustedSourcesOperation.swift @@ -10,11 +10,7 @@ import Foundation private extension URL { - #if STAGING static let trustedSources = URL(string: "https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json")! - #else - static let trustedSources = URL(string: "https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json")! - #endif } extension FetchTrustedSourcesOperation