Skip to content

Commit

Permalink
JSONDictionary public getter
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Minaev committed Feb 1, 2016
1 parent b897dae commit 6ecf986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ObjectMapper/Core/Map.swift
Expand Up @@ -33,7 +33,7 @@ import Foundation
public final class Map {
public let mappingType: MappingType

var JSONDictionary: [String : AnyObject] = [:]
public internal(set) var JSONDictionary: [String : AnyObject] = [:]
public var currentValue: AnyObject?
var currentKey: String?
var keyIsNested = false
Expand Down Expand Up @@ -157,4 +157,4 @@ private func valueFor(keyPathComponents: ArraySlice<String>, dictionary: [AnyObj
}

return nil
}
}

0 comments on commit 6ecf986

Please sign in to comment.