Browse Source

Making manager queue private

Mattt Thompson 11 years ago
parent
commit
2e208281f2
1 changed files with 1 additions and 1 deletions
  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