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/Repositories | |
| 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/Repositories')
| -rw-r--r-- | Hutch/Views/Repositories/ReadmeView.swift | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Hutch/Views/Repositories/ReadmeView.swift b/Hutch/Views/Repositories/ReadmeView.swift index 3777cdb..dea41f3 100644 --- a/Hutch/Views/Repositories/ReadmeView.swift +++ b/Hutch/Views/Repositories/ReadmeView.swift @@ -1140,7 +1140,7 @@ private final class HTMLWebViewCoordinator: NSObject, WKNavigationDelegate, @unc self.parent = parent } - func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { + func webView(_ webView: WKWebView, didFinish _: WKNavigation!) { DispatchQueue.main.async { self.parent.loadError = nil } @@ -1151,11 +1151,11 @@ private final class HTMLWebViewCoordinator: NSObject, WKNavigationDelegate, @unc } } - func webView(_ webView: WKWebView, didFail navigation: WKNavigation!, withError error: Error) { + func webView(_: WKWebView, didFail _: WKNavigation!, withError error: Error) { handleLoadFailure(error) } - func webView(_ webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: Error) { + func webView(_: WKWebView, didFailProvisionalNavigation _: WKNavigation!, withError error: Error) { handleLoadFailure(error) } |
