Skip to content

Commit

Permalink
Merge pull request #379 from zulkis/master
Browse files Browse the repository at this point in the history
JSONDictionary public getter
  • Loading branch information
tristanhimmelman committed Feb 1, 2016
2 parents b897dae + 6ecf986 commit 31a2617
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 31a2617

Please sign in to comment.