From e027c2b0a36ba89e728b195d38855c97ac796e73 Mon Sep 17 00:00:00 2001 From: Matejkob <44930823+Matejkob@users.noreply.github.com> Date: Sat, 29 Jun 2024 15:35:18 +0000 Subject: [PATCH] Apply swift-format changes --- Examples/Sources/ViewModel.swift | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Examples/Sources/ViewModel.swift b/Examples/Sources/ViewModel.swift index 35f0308..0797ebf 100644 --- a/Examples/Sources/ViewModel.swift +++ b/Examples/Sources/ViewModel.swift @@ -6,7 +6,7 @@ protocol ServiceProtocol { var anyProtocol: any Codable { get set } var secondName: String? { get } var address: String! { get } - var added: () -> Void { get set } + var added: () -> Void { get set } var removed: (() -> Void)? { get set } func initialize(name: String, _ secondName: String?) @@ -19,16 +19,6 @@ protocol ServiceProtocol { func read() -> String! } - - - - - - - - - - final class ViewModel { private let service: ServiceProtocol