mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 00:01:00 +00:00
Remove redundant try
This commit is contained in:
parent
1c6a2bcff4
commit
cf733541c4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ public struct ContentDatabase {
|
|||
|
||||
public extension ContentDatabase {
|
||||
static func delete(forIdentityID identityID: UUID) throws {
|
||||
try FileManager.default.removeItem(at: try fileURL(identityID: identityID))
|
||||
try FileManager.default.removeItem(at: fileURL(identityID: identityID))
|
||||
}
|
||||
|
||||
func insert(status: Status) -> AnyPublisher<Never, Error> {
|
||||
|
|
Loading…
Reference in a new issue