Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Apply swift-format changes #112

Merged
merged 1 commit into from
Jun 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions Examples/Sources/ViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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?)
Expand All @@ -19,16 +19,6 @@ protocol ServiceProtocol {
func read() -> String!
}











final class ViewModel {
private let service: ServiceProtocol

Expand Down