Remove redundant try

This commit is contained in:
Justin Mazzocchi 2020-09-15 16:58:04 -07:00
parent 1c6a2bcff4
commit cf733541c4
No known key found for this signature in database
GPG key ID: E223E6937AAFB01C

View file

@ -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> {