Comment-out code that is triggering a misleading warning.

This commit is contained in:
Brent Simmons 2024-04-22 18:02:00 -07:00
parent c0619d2364
commit 5d1bd9c5e4

View File

@ -33,13 +33,13 @@ public final class FeedlyLogoutOperation: FeedlyOperation {
switch result { switch result {
case .success: case .success:
os_log("Logged out of Feedly account.") os_log("Logged out of Feedly account.")
do { // do {
// TODO: fix removing credentials // // TODO: fix removing credentials
// try account.removeCredentials(type: .oauthAccessToken) //// try account.removeCredentials(type: .oauthAccessToken)
// try account.removeCredentials(type: .oauthRefreshToken) //// try account.removeCredentials(type: .oauthRefreshToken)
} catch { // } catch {
// oh well, we tried our best. // // oh well, we tried our best.
} // }
didFinish() didFinish()
case .failure(let error): case .failure(let error):