Browse Source

Making ParameterEncoding queryComponents internal

Mattt Thompson 11 years ago
parent
commit
c9b16f133d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Alamofire.swift

+ 1 - 1
Source/Alamofire.swift

@@ -99,7 +99,7 @@ public enum ParameterEncoding {
         return (mutableRequest, error)
     }
 
-    private func queryComponents(key: String, _ value: AnyObject) -> [(String, String)] {
+    func queryComponents(key: String, _ value: AnyObject) -> [(String, String)] {
         var components: [(String, String)] = []
         if let dictionary = value as? [String: AnyObject] {
             for (nestedKey, value) in dictionary {