Skip to content

Commit

Permalink
removed warning
Browse files Browse the repository at this point in the history
  • Loading branch information
evermeer committed Feb 3, 2016
1 parent 7b4b3b3 commit a13b3b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EVReflection.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |s|
#

s.name = "EVReflection"
s.version = "2.16"
s.version = "2.16.1"
s.summary = "iOS: Swift helper library with reflection functions"
s.description = "Swift helper library with reflection functions including support for NSCoding, Printable, Hashable, Equatable and JSON"
s.homepage = "https://github.com/evermeer/EVReflection"
Expand Down
2 changes: 1 addition & 1 deletion EVReflection/pod/EVReflection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ final public class EVReflection {
:returns: The object that is created from the dictionary
*/
public class func setPropertiesfromDictionary<T where T:NSObject>(dictionary:NSDictionary, anyObject: T) -> T {
var (keyMapping, properties, types) = getKeyMapping(anyObject, dictionary: dictionary)
var (keyMapping, _ , types) = getKeyMapping(anyObject, dictionary: dictionary)
for (k, v) in dictionary {
var skipKey = false
if let evObject = anyObject as? EVObject {
Expand Down

0 comments on commit a13b3b2

Please sign in to comment.