@@ -70,7 +70,7 @@ public static IDisposable OneWayBind<TFrom, TFromProperty, TTarget, TTargetPrope
70
70
}
71
71
72
72
var hostObs = fromObject . WhenPropertyValueChanges ( fromProperty )
73
- . Select ( x => EqualityComparer < TFromProperty > . Default . Equals ( x , default ) ? default : conversionFunc ( x ) ) ;
73
+ . Select ( conversionFunc ) ;
74
74
75
75
return OneWayBindImplementation ( targetObject , hostObs , toProperty ) ;
76
76
}
@@ -101,12 +101,11 @@ public static IDisposable Bind<TFrom, TFromProperty, TTarget, TTargetProperty>(
101
101
where TTarget : class , INotifyPropertyChanged
102
102
{
103
103
var hostObs = fromObject . WhenPropertyValueChanges ( fromProperty )
104
- . Select ( x => EqualityComparer < TFromProperty > . Default . Equals ( x , default ) ? default : hostToTargetConv ( x ) )
104
+ . Select ( hostToTargetConv )
105
105
. Select ( x => ( value : ( object ) x , isHost : true ) ) ;
106
106
var targetObs = targetObject . WhenPropertyValueChanges ( toProperty )
107
107
. Skip ( 1 ) // We have the host to win first off.
108
- . Select ( x =>
109
- EqualityComparer < TTargetProperty > . Default . Equals ( x , default ) ? default : targetToHostConv ( x ) )
108
+ . Select ( targetToHostConv )
110
109
. Select ( x => ( value : ( object ) x , isHost : false ) ) ;
111
110
112
111
return BindImplementation ( fromObject , targetObject , hostObs , targetObs , fromProperty , toProperty ) ;
0 commit comments