Browse Source

Fix more missed out conflict resolutions.

Daniel C. Weber 7 years ago
parent
commit
86636392b2

+ 2 - 2
Rx.NET/Source/src/System.Reactive/Concurrency/Scheduler.Recursive.cs

@@ -236,7 +236,7 @@ namespace System.Reactive.Concurrency
 
                 Group.Add(sad);
                 sad.Disposable = Scheduler.ScheduleAction((state, sad, @this: this), time, nextState => {
-                    nextState.@this.group.Remove(nextState.sad);
+                    nextState.@this.Group.Remove(nextState.sad);
                     [email protected](nextState.state);
                 });
             }
@@ -264,7 +264,7 @@ namespace System.Reactive.Concurrency
 
                 Group.Add(sad);
                 sad.Disposable = Scheduler.ScheduleAction((state, sad, @this: this), dtOffset, nextState => {
-                    nextState.@this.group.Remove(nextState.sad);
+                    nextState.@this.Group.Remove(nextState.sad);
                     [email protected](nextState.state);
                 });
             }