mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-17 14:37:11 +01:00
fix optimization issues in release build
This commit is contained in:
@@ -462,8 +462,8 @@ extension AttributeProtocol {
|
||||
|
||||
let notification = CoreStoreObjectValueDiff<V>(
|
||||
kind: kind,
|
||||
newNativeValue: newValue as! V.QueryableNativeType?,
|
||||
oldNativeValue: oldValue as! V.QueryableNativeType?,
|
||||
newNativeValue: newValue as? V.QueryableNativeType,
|
||||
oldNativeValue: oldValue as? V.QueryableNativeType,
|
||||
isPrior: isPrior
|
||||
)
|
||||
changeHandler(
|
||||
@@ -485,8 +485,8 @@ extension AttributeProtocol {
|
||||
|
||||
let notification = CoreStoreObjectTransformableDiff<V>(
|
||||
kind: kind,
|
||||
newValue: newValue as! V?,
|
||||
oldValue: oldValue as! V?,
|
||||
newValue: newValue as? V,
|
||||
oldValue: oldValue as? V,
|
||||
isPrior: isPrior
|
||||
)
|
||||
changeHandler(
|
||||
|
||||
Reference in New Issue
Block a user