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.PlatformServices/Reactive/Internal/ExceptionServicesImpl.cs')
-rw-r--r--Rx.NET/System.Reactive.PlatformServices/Reactive/Internal/ExceptionServicesImpl.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Rx.NET/System.Reactive.PlatformServices/Reactive/Internal/ExceptionServicesImpl.cs b/Rx.NET/System.Reactive.PlatformServices/Reactive/Internal/ExceptionServicesImpl.cs
deleted file mode 100644
index 6d14651..0000000
--- a/Rx.NET/System.Reactive.PlatformServices/Reactive/Internal/ExceptionServicesImpl.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
-
-#if HAS_EDI
-namespace System.Reactive.PlatformServices
-{
- //
- // WARNING: This code is kept *identically* in two places. One copy is kept in System.Reactive.Core for non-PLIB platforms.
- // Another copy is kept in System.Reactive.PlatformServices to enlighten the default lowest common denominator
- // behavior of Rx for PLIB when used on a more capable platform.
- //
- internal class /*Default*/ExceptionServicesImpl : IExceptionServices
- {
- public void Rethrow(Exception exception)
- {
- System.Runtime.ExceptionServices.ExceptionDispatchInfo.Capture(exception).Throw();
- }
- }
-}
-#endif \ No newline at end of file