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 {
case .success:
os_log("Logged out of Feedly account.")
do {
// TODO: fix removing credentials
// try account.removeCredentials(type: .oauthAccessToken)
// try account.removeCredentials(type: .oauthRefreshToken)
} catch {
// oh well, we tried our best.
}
// do {
// // TODO: fix removing credentials
//// try account.removeCredentials(type: .oauthAccessToken)
//// try account.removeCredentials(type: .oauthRefreshToken)
// } catch {
// // oh well, we tried our best.
// }
didFinish()
case .failure(let error):