diff --git a/Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs b/Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs index b7e1ca19b9..9f1297742b 100644 --- a/Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs +++ b/Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs @@ -504,35 +504,6 @@ private void OnCompleted(int index) } } - private static bool All(bool[] values) - { - foreach (var value in values) - { - if (!value) - { - return false; - } - } - - return true; - } - - private static bool AllExcept(bool[] values, int index) - { - for (var i = 0; i < values.Length; i++) - { - if (i != index) - { - if (!values[i]) - { - return false; - } - } - } - - return true; - } - private sealed class SourceObserver : IObserver { private readonly _ _parent;