Explorar o código

Merge pull request #724 from danielcweber/FixNamingOfLocalVariable

Fix the name of a local variable.
Daniel C. Weber %!s(int64=7) %!d(string=hai) anos
pai
achega
a1a44b16b6
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      Rx.NET/Source/src/System.Reactive/Internal/SafeObserver.cs

+ 3 - 3
Rx.NET/Source/src/System.Reactive/Internal/SafeObserver.cs

@@ -24,15 +24,15 @@ namespace System.Reactive
 
             public override void OnNext(TSource value)
             {
-                var __noError = false;
+                var noError = false;
                 try
                 {
                     _observer.OnNext(value);
-                    __noError = true;
+                    noError = true;
                 }
                 finally
                 {
-                    if (!__noError)
+                    if (!noError)
                     {
                         Dispose();
                     }