Browse Source

Remove unused methods. (#605)

Daniel C. Weber 7 years ago
parent
commit
3afaeacdb8
1 changed files with 0 additions and 29 deletions
  1. 0 29
      Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs

+ 0 - 29
Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.cs

@@ -504,35 +504,6 @@ namespace System.Reactive.Linq.ObservableImpl
                 }
                 }
             }
             }
 
 
-            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<TSource>
             private sealed class SourceObserver : IObserver<TSource>
             {
             {
                 private readonly _ _parent;
                 private readonly _ _parent;