From 7a593c1e82ac885a3ebfa4000395d4595b352454 Mon Sep 17 00:00:00 2001 From: Daniel Weber Date: Mon, 18 Jun 2018 18:35:16 +0200 Subject: [PATCH] Remove unused methods. --- .../Linq/Observable/CombineLatest.cs | 29 ------------------- 1 file changed, 29 deletions(-) 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;