From 7a726e6d8a45a4a9ef771002659679d695646914 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Mon, 23 Aug 2021 23:12:38 +0800 Subject: [PATCH] removes unused preference --- iOS/AppDefaults.swift | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/iOS/AppDefaults.swift b/iOS/AppDefaults.swift index 1abc9063e..c70c478d5 100644 --- a/iOS/AppDefaults.swift +++ b/iOS/AppDefaults.swift @@ -204,20 +204,6 @@ final class AppDefaults { } } - /// The default behaviour is to open links in the in-app browser, as such, `Browsers.inApp.browserID` is the default. - -// var openLinksPreferredBrowser: String { -// get { -// if AppDefaults.store.string(forKey: Key.openLinksPreferredBrowser) == nil { -// return Browsers.inApp.browserID -// } else { -// return AppDefaults.store.string(forKey: Key.openLinksPreferredBrowser)! -// } -// } -// -// set { AppDefaults.store.setValue(newValue, forKey: Key.openLinksPreferredBrowser) } -// } - var timelineNumberOfLines: Int { get { return AppDefaults.int(for: Key.timelineNumberOfLines)