Explorar el Código

Making manager queue private

Mattt Thompson hace 11 años
padre
commit
2e208281f2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/Alamofire.swift

+ 1 - 1
Source/Alamofire.swift

@@ -267,7 +267,7 @@ public class Manager {
 
     private let delegate: SessionDelegate
 
-    let queue = dispatch_queue_create(nil, DISPATCH_QUEUE_SERIAL)
+    private let queue = dispatch_queue_create(nil, DISPATCH_QUEUE_SERIAL)
 
     /// The underlying session.
     public let session: NSURLSession