summaryrefslogtreecommitdiff
path: root/Hutch/Views/Builds/BuildTaskLogView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hutch/Views/Builds/BuildTaskLogView.swift')
-rw-r--r--Hutch/Views/Builds/BuildTaskLogView.swift4
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
}