removes unused preference

This commit is contained in:
Stuart Breckenridge 2021-08-23 23:12:38 +08:00
parent 08a1120e00
commit 7a726e6d8a
No known key found for this signature in database
GPG Key ID: 1F11FD62007DC331

View File

@ -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)