Comment that catch ignores error.

Partial #592

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2024-10-21 07:43:45 -04:00
parent 3a6d6724c9
commit 65218eff74
No known key found for this signature in database

View file

@ -23,7 +23,9 @@ class NetworkManager {
do {
let url = URL(fileURLWithPath: NSHomeDirectory()).appendingPathComponent("Library/Caches/com.mphys.mas-cli")
try FileManager.default.removeItem(at: url)
} catch {}
} catch {
// Ignore
}
}
/// Loads data asynchronously.