summaryrefslogtreecommitdiff
path: root/DomainDig/SSLCheckService.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-03 19:04:08 -0500
committerChristian Cleberg <[email protected]>2026-04-03 19:04:08 -0500
commit21576b75478e2a1ff7a2b189e83bcca97403cce3 (patch)
tree33834c3269b9640af7e93897875f5a6ce896ef46 /DomainDig/SSLCheckService.swift
parent253e57bd3ba31ef533a904be84d43c8103ba81b4 (diff)
downloaddomain-dig-1.7.1.tar.gz
domain-dig-1.7.1.tar.bz2
domain-dig-1.7.1.zip
fix(services): rename unused URLSession delegate params to _v1.7.1
Diffstat (limited to 'DomainDig/SSLCheckService.swift')
-rw-r--r--DomainDig/SSLCheckService.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/DomainDig/SSLCheckService.swift b/DomainDig/SSLCheckService.swift
index f227063..6cf8ec3 100644
--- a/DomainDig/SSLCheckService.swift
+++ b/DomainDig/SSLCheckService.swift
@@ -352,7 +352,7 @@ final class SSLSessionDelegate: NSObject, URLSessionDelegate, @unchecked Sendabl
}
func urlSession(
- _ session: URLSession,
+ _ _: URLSession,
didReceive challenge: URLAuthenticationChallenge,
completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void
) {
@@ -373,8 +373,8 @@ final class SSLSessionDelegate: NSObject, URLSessionDelegate, @unchecked Sendabl
extension SSLSessionDelegate: URLSessionTaskDelegate {
func urlSession(
- _ session: URLSession,
- task: URLSessionTask,
+ _ _: URLSession,
+ task _: URLSessionTask,
didFinishCollecting metrics: URLSessionTaskMetrics
) {
guard let transaction = metrics.transactionMetrics.last else {