Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rx.NET/Source/src/System.Reactive/Joins/JoinObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal sealed class JoinObserver<T> : ObserverBase<Notification<T>>, IJoinObse
private readonly IObservable<T> _source;
private readonly Action<Exception> _onError;
private readonly List<ActivePlan> _activePlans;
public Queue<Notification<T>> Queue { get; private set; }
public Queue<Notification<T>> Queue { get; }
private IDisposable _subscription;
private bool _isDisposed;

Expand Down
Loading