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/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs')
-rw-r--r--Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs b/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs
index 71e0037..06bf911 100644
--- a/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs
+++ b/Rx/NET/Source/System.Reactive.Linq/Reactive/Linq/Observable/Catch.cs
@@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
-namespace System.Reactive.Linq.Observαble
+namespace System.Reactive.Linq.ObservableImpl
{
class Catch<TSource> : Producer<TSource>
{
@@ -136,7 +136,7 @@ namespace System.Reactive.Linq.Observαble
var d = new SingleAssignmentDisposable();
_subscription.Disposable = d;
- d.Disposable = result.SubscribeSafe(new ε(this));
+ d.Disposable = result.SubscribeSafe(new Impl(this));
}
else
{
@@ -151,11 +151,11 @@ namespace System.Reactive.Linq.Observαble
base.Dispose();
}
- class ε : IObserver<TSource>
+ class Impl : IObserver<TSource>
{
private readonly _ _parent;
- public ε(_ parent)
+ public Impl(_ parent)
{
_parent = parent;
}