Skip to content

Commit d03eba2

Browse files
committed
Run SwiftFormat again (with latest version)
1 parent 67ec69b commit d03eba2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cryptomator/Settings/SettingsCoordinator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class SettingsCoordinator: Coordinator {
8484

8585
func showManageSubscriptions() {
8686
if #available(iOS 15.0, *), let scene = UIApplication.shared.connectedScenes.first as? UIWindowScene {
87-
Task.init {
87+
Task {
8888
do {
8989
try await AppStore.showManageSubscriptions(in: scene)
9090
} catch {

CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubRepository.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public struct HubVault: Equatable {
1313
}
1414

1515
private struct HubVaultRow: Codable, Equatable, PersistableRecord, FetchableRecord {
16-
public static let databaseTableName = "hubVaultAccount"
16+
static let databaseTableName = "hubVaultAccount"
1717

1818
let vaultUID: String
1919
let subscriptionState: HubSubscriptionState
@@ -31,7 +31,7 @@ private struct HubVaultRow: Codable, Equatable, PersistableRecord, FetchableReco
3131
case vaultUID, subscriptionState
3232
}
3333

34-
public func encode(to container: inout PersistenceContainer) throws {
34+
func encode(to container: inout PersistenceContainer) throws {
3535
container[Columns.vaultUID] = vaultUID
3636
container[Columns.subscriptionState] = subscriptionState
3737
}

0 commit comments

Comments
 (0)