Skip to content

Commit

Permalink
Resolve appveyor CI of "unexpected trailing whitespace"
Browse files Browse the repository at this point in the history
  • Loading branch information
moh-hassan committed Nov 17, 2019
1 parent 24375db commit 6c08614
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MoreLinq/Reactive/Subject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class Subject<T> : IObservable<T>, IObserver<T>
bool IsMuted => _completed || _error != null;

/// <summary>
///
/// Notifies the provider that an observer is to receive notifications.
/// </summary>
/// <param name="observer"></param>
/// <returns></returns>
Expand Down Expand Up @@ -88,7 +88,7 @@ public IDisposable Subscribe(IObserver<T> observer)
bool _shouldDeleteObserver; // delete (null) or remove an observer?

/// <summary>
///
/// Action OnNext
/// </summary>
/// <param name="value"></param>
public void OnNext(T value)
Expand Down Expand Up @@ -128,14 +128,14 @@ public void OnNext(T value)
}

/// <summary>
///
/// Action for Exception handling
/// </summary>
/// <param name="error"></param>
public void OnError(Exception error) =>
OnFinality(ref _error, error, (observer, err) => observer.OnError(err));

/// <summary>
///
/// Action OnCompleted
/// </summary>
public void OnCompleted() =>
OnFinality(ref _completed, true, (observer, _) => observer.OnCompleted());
Expand Down

0 comments on commit 6c08614

Please sign in to comment.