Browse Source

Stylistic change to Scan.

Bart De Smet 8 years ago
parent
commit
e92f0e787b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Rx.NET/Source/src/System.Reactive/Linq/Observable/Scan.cs

+ 2 - 0
Rx.NET/Source/src/System.Reactive/Linq/Observable/Scan.cs

@@ -103,7 +103,9 @@ namespace System.Reactive.Linq.ObservableImpl
                 try
                 {
                     if (_hasAccumulation)
+                    {
                         _accumulation = _accumulator(_accumulation, value);
+                    }
                     else
                     {
                         _accumulation = value;