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/Inbox/ThreadDetailView.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/Inbox/ThreadDetailView.swift')
| -rw-r--r-- | Hutch/Views/Inbox/ThreadDetailView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Hutch/Views/Inbox/ThreadDetailView.swift b/Hutch/Views/Inbox/ThreadDetailView.swift index 143200f..c595497 100644 --- a/Hutch/Views/Inbox/ThreadDetailView.swift +++ b/Hutch/Views/Inbox/ThreadDetailView.swift @@ -277,7 +277,7 @@ private struct MailComposeView: UIViewControllerRepresentable { return controller } - func updateUIViewController(_ uiViewController: UIViewController, context: Context) { + func updateUIViewController(_ : UIViewController, context _: Context) { // The view controller is fully configured in makeUIViewController. // No state-driven updates are required. } @@ -339,7 +339,7 @@ private final class MailUnavailableViewController: UIViewController { } @available(*, unavailable) - required init?(coder: NSCoder) { + required init?(coder _: NSCoder) { fatalError("init(coder:) has not been implemented") } |
