Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx.NET/System.Reactive.Core/Reactive/Internal/Stubs.cs')
-rw-r--r--Rx.NET/System.Reactive.Core/Reactive/Internal/Stubs.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Rx.NET/System.Reactive.Core/Reactive/Internal/Stubs.cs b/Rx.NET/System.Reactive.Core/Reactive/Internal/Stubs.cs
deleted file mode 100644
index b54d395..0000000
--- a/Rx.NET/System.Reactive.Core/Reactive/Internal/Stubs.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-namespace System.Reactive
-{
- internal static class Stubs<T>
- {
- public static readonly Action<T> Ignore = _ => { };
- public static readonly Func<T, T> I = _ => _;
- }
-
- internal static class Stubs
- {
- public static readonly Action Nop = () => { };
- public static readonly Action<Exception> Throw = ex => { ex.Throw(); };
- }
-}