Skip to content

Commit 4b19ed5

Browse files
author
Love Hornquist Astrand
committed
review feedback: no availibility in swift-corelibs-foundation
1 parent f6263ec commit 4b19ed5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sources/Foundation/URLComponents.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ public struct URLComponents : ReferenceConvertible, Hashable, Equatable, _Mutabl
271271
/// Returns an array of query items for this `URLComponents`, in the order in which they appear in the original query string. Any percent-encoding in a query item name or value is retained
272272
///
273273
/// The setter combines an array containing any number of `URLQueryItem`s, each of which represents a single key-value pair, into a query string and sets the `URLComponents` query property. This property assumes the query item names and values are already correctly percent-encoded, and that the query item names do not contain the query item delimiter characters '&' and '='. Attempting to set an incorrectly percent-encoded query item or a query item name with the query item delimiter characters '&' and '=' will cause a `fatalError`.
274-
@available(macOS 10.13, iOS 11.0, tvOS 11.0, watchOS 4.0, *)
275274
public var percentEncodedQueryItems: [URLQueryItem]? {
276275
get { return _handle.map { $0.percentEncodedQueryItems } }
277276
set { _applyMutation { $0.percentEncodedQueryItems = newValue } }

0 commit comments

Comments
 (0)