From a13b3b2872e4efef8176411a017a863208c80e2e Mon Sep 17 00:00:00 2001 From: Edwin Vermeer Date: Wed, 3 Feb 2016 14:46:11 +0100 Subject: [PATCH] removed warning --- EVReflection.podspec | 2 +- EVReflection/pod/EVReflection.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EVReflection.podspec b/EVReflection.podspec index 6de04d8c..9e15e423 100644 --- a/EVReflection.podspec +++ b/EVReflection.podspec @@ -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" diff --git a/EVReflection/pod/EVReflection.swift b/EVReflection/pod/EVReflection.swift index b1da8a84..97f96a0d 100644 --- a/EVReflection/pod/EVReflection.swift +++ b/EVReflection/pod/EVReflection.swift @@ -45,7 +45,7 @@ final public class EVReflection { :returns: The object that is created from the dictionary */ public class func setPropertiesfromDictionary(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 {