Skip to content

Commit bc4a288

Browse files
authored
remove the null check around the conversion funcs. (#2)
1 parent 8545062 commit bc4a288

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/ReactiveMarbles.PropertyChanged/BindExtensions.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static IDisposable OneWayBind<TFrom, TFromProperty, TTarget, TTargetPrope
7070
}
7171

7272
var hostObs = fromObject.WhenPropertyValueChanges(fromProperty)
73-
.Select(x => EqualityComparer<TFromProperty>.Default.Equals(x, default) ? default : conversionFunc(x));
73+
.Select(conversionFunc);
7474

7575
return OneWayBindImplementation(targetObject, hostObs, toProperty);
7676
}
@@ -101,12 +101,11 @@ public static IDisposable Bind<TFrom, TFromProperty, TTarget, TTargetProperty>(
101101
where TTarget : class, INotifyPropertyChanged
102102
{
103103
var hostObs = fromObject.WhenPropertyValueChanges(fromProperty)
104-
.Select(x => EqualityComparer<TFromProperty>.Default.Equals(x, default) ? default : hostToTargetConv(x))
104+
.Select(hostToTargetConv)
105105
.Select(x => (value: (object)x, isHost: true));
106106
var targetObs = targetObject.WhenPropertyValueChanges(toProperty)
107107
.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)
110109
.Select(x => (value: (object)x, isHost: false));
111110

112111
return BindImplementation(fromObject, targetObject, hostObs, targetObs, fromProperty, toProperty);

0 commit comments

Comments
 (0)