Browse Source

Removed `urlRequest` property from `URLRequestConvertible` protocol.

Christian Noon 9 years ago
parent
commit
2f3437bf33
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Source/Alamofire.swift

+ 0 - 3
Source/Alamofire.swift

@@ -68,9 +68,6 @@ extension URLComponents: URLConvertible {
 
 /// Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests.
 public protocol URLRequestConvertible {
-    /// The URL request.
-    var urlRequest: URLRequest? { get }
-
     /// Returns a URL request or throws if an `Error` was encountered.
     ///
     /// - throws: An `Error` if the underlying `URLRequest` is `nil`.