We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b3143 commit 69344b0Copy full SHA for 69344b0
AmplifyPlugins/Predictions/AWSPredictionsPlugin/Signing/URL+Signing.swift
@@ -42,14 +42,4 @@ extension URL {
42
43
return url ?? self
44
}
45
-
46
- func _appending(queryItem: URLQueryItem) -> URL {
47
- if #available(iOS 16, *) {
48
- return appending(queryItems: [queryItem])
49
- } else {
50
- var components = URLComponents(url: self, resolvingAgainstBaseURL: false)
51
- components?.queryItems?.append(queryItem)
52
- return components?.url ?? self
53
- }
54
55
0 commit comments