Explorar el Código

Removed unnecessary use of `self`…no functional changes.

Christian Noon hace 9 años
padre
commit
8bb747342e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/Alamofire.swift

+ 1 - 1
Source/Alamofire.swift

@@ -81,7 +81,7 @@ extension URLRequest {
 
         if let request = urlString as? URLRequest { self = request }
 
-        self.httpMethod = method.rawValue
+        httpMethod = method.rawValue
 
         if let headers = headers {
             for (headerField, headerValue) in headers {