Procházet zdrojové kódy

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

Christian Noon před 9 roky
rodič
revize
8bb747342e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 {