Skip to content

Commit

Permalink
Removed unnecessary throws
Browse files Browse the repository at this point in the history
  • Loading branch information
lougeniaC64 committed Apr 29, 2022
1 parent 47a1d8b commit 667b794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/tabs/ios/Tabs/Tabs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ open class TabsStorage {
}

/// Get all tabs by client.
open func getAll() throws -> [ClientRemoteTabs] {
open func getAll() -> [ClientRemoteTabs] {
return queue.sync {
return self.store.getAll()
}
Expand All @@ -27,7 +27,7 @@ open class TabsStorage {
}

/// Register with the sync manager
open func registerWithSyncManager() throws {
open func registerWithSyncManager() {
return queue.sync {
return self.store.registerWithSyncManager()
}
Expand Down

0 comments on commit 667b794

Please sign in to comment.