diff options
| author | Christian Cleberg <[email protected]> | 2026-03-24 16:44:44 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-24 16:44:44 -0500 |
| commit | f38a1caa591fa43cb3d6249b90919c9a3a185c25 (patch) | |
| tree | be9aa9bb9c0f9de35d700250ff269575915dce12 /Hutch/Views/Builds/BuildTaskLogView.swift | |
| parent | 8da2f907d690a59124d9008c0d8e1e792133702b (diff) | |
| download | hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.tar.gz hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.tar.bz2 hutch-f38a1caa591fa43cb3d6249b90919c9a3a185c25.zip | |
chore: rename unused protocol params to _ across UIKit representables
Diffstat (limited to 'Hutch/Views/Builds/BuildTaskLogView.swift')
| -rw-r--r-- | Hutch/Views/Builds/BuildTaskLogView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hutch/Views/Builds/BuildTaskLogView.swift b/Hutch/Views/Builds/BuildTaskLogView.swift index 85c9e21..d1d60a4 100644 --- a/Hutch/Views/Builds/BuildTaskLogView.swift +++ b/Hutch/Views/Builds/BuildTaskLogView.swift @@ -92,7 +92,7 @@ struct BuildTaskLogView: View { private struct BuildLogTextView: UIViewRepresentable { let text: String - func makeUIView(context: Context) -> UITextView { + func makeUIView(context _: Context) -> UITextView { let textView = UITextView() textView.isEditable = false textView.isSelectable = true @@ -110,7 +110,7 @@ private struct BuildLogTextView: UIViewRepresentable { return textView } - func updateUIView(_ uiView: UITextView, context: Context) { + func updateUIView(_ uiView: UITextView, context _: Context) { guard uiView.text != text else { return } uiView.text = text } |
