diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 79b5651..b8bcf17 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -38,7 +38,7 @@ PODS: - NSString-Helper (1.1.0) - nv-ios-http-status (0.0.1) - PEAR-FileManager-iOS (1.3.1) - - PNObject (2.5.6): + - PNObject (2.5.7): - AFNetworking - CodFis-Helper - DDDKeychainWrapper @@ -107,7 +107,7 @@ SPEC CHECKSUMS: NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 - PNObject: c5280d687852b242e81e266575cdf04ec562b826 + PNObject: 524a8d655fb150c0da2f262441bbbe24dd9bd8b9 PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66 diff --git a/Example/Pods/Local Podspecs/PNObject.podspec.json b/Example/Pods/Local Podspecs/PNObject.podspec.json index 2d3ed79..79da694 100644 --- a/Example/Pods/Local Podspecs/PNObject.podspec.json +++ b/Example/Pods/Local Podspecs/PNObject.podspec.json @@ -1,6 +1,6 @@ { "name": "PNObject", - "version": "2.5.6", + "version": "2.5.7", "summary": "PNObject is a simple replica of the more complex ParseObject", "homepage": "https://github.com/giuseppenucifora/PNObject", "license": { @@ -12,7 +12,7 @@ }, "source": { "git": "https://github.com/giuseppenucifora/PNObject.git", - "tag": "2.5.6" + "tag": "2.5.7" }, "platforms": { "ios": "8.0" diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 79b5651..b8bcf17 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -38,7 +38,7 @@ PODS: - NSString-Helper (1.1.0) - nv-ios-http-status (0.0.1) - PEAR-FileManager-iOS (1.3.1) - - PNObject (2.5.6): + - PNObject (2.5.7): - AFNetworking - CodFis-Helper - DDDKeychainWrapper @@ -107,7 +107,7 @@ SPEC CHECKSUMS: NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 - PNObject: c5280d687852b242e81e266575cdf04ec562b826 + PNObject: 524a8d655fb150c0da2f262441bbbe24dd9bd8b9 PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66 diff --git a/PNObject.podspec b/PNObject.podspec index c28d911..dc65b77 100644 --- a/PNObject.podspec +++ b/PNObject.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'PNObject' -s.version = '2.5.6' +s.version = '2.5.7' s.summary = 'PNObject is a simple replica of the more complex ParseObject' diff --git a/PNObject/Classes/PNObjectConstants.h b/PNObject/Classes/PNObjectConstants.h index 00ff31b..1cd2c22 100644 --- a/PNObject/Classes/PNObjectConstants.h +++ b/PNObject/Classes/PNObjectConstants.h @@ -18,7 +18,7 @@ #pragma mark NSLogDebug Macro -#if defined(DEBUG) || (defined(FORCE_LOG) && FORCE_LOG == 1) +#if defined(DEBUG) && defined(FORCE_LOG) && FORCE_LOG == 1 #define NSLogDebug(format, ...) NSLog(@"<%s:%d> %s, " format, strrchr("/" __FILE__, '/') + 1, __LINE__, __PRETTY_FUNCTION__, ## __VA_ARGS__) #else #define NSLogDebug(format, ...)