From f38a1caa591fa43cb3d6249b90919c9a3a185c25 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 24 Mar 2026 16:44:44 -0500 Subject: chore: rename unused protocol params to _ across UIKit representables --- Hutch/Views/Builds/BuildTaskLogView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Hutch/Views/Builds/BuildTaskLogView.swift') 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 } -- cgit v1.2.3