mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Comment that catch ignores error.
Partial #592 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
parent
3a6d6724c9
commit
65218eff74
1 changed files with 3 additions and 1 deletions
|
@ -23,7 +23,9 @@ class NetworkManager {
|
||||||
do {
|
do {
|
||||||
let url = URL(fileURLWithPath: NSHomeDirectory()).appendingPathComponent("Library/Caches/com.mphys.mas-cli")
|
let url = URL(fileURLWithPath: NSHomeDirectory()).appendingPathComponent("Library/Caches/com.mphys.mas-cli")
|
||||||
try FileManager.default.removeItem(at: url)
|
try FileManager.default.removeItem(at: url)
|
||||||
} catch {}
|
} catch {
|
||||||
|
// Ignore
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Loads data asynchronously.
|
/// Loads data asynchronously.
|
||||||
|
|
Loading…
Add table
Reference in a new issue