Skip to content

Commit

Permalink
style: tidy comments in ReactiveBinding
Browse files Browse the repository at this point in the history
  • Loading branch information
olevett committed Feb 8, 2017
1 parent 51249d4 commit 73cd42e
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/ReactiveUI/ReactiveBinding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface IReactiveBinding<TView, TViewModel, TValue> : IDisposable
where TView : IViewFor
{
/// <summary>
/// The instance of the view model this binding is applied to.</param>
/// The instance of the view model this binding is applied to.
/// </summary>
/// <value>
/// The view model.
Expand Down Expand Up @@ -76,15 +76,6 @@ internal class ReactiveBinding<TView, TViewModel, TValue> : IReactiveBinding<TVi
{
private IDisposable bindingDisposable;

/// <summary>
/// Initializes a new instance of the <see cref="AppliedBindingInfo{TViewModel}" /> class.
/// </summary>
/// <param name="view">The view.</param>
/// <param name="viewModel">The view model.</param>
/// <param name="viewPath">The view path.</param>
/// <param name="viewModelPath">The view model path.</param>
/// <param name="direction">The direction.</param>
/// <param name="bindingDisposable">The binding disposable.</param>
public ReactiveBinding(TView view, TViewModel viewModel, Expression viewExpression, Expression viewModelExpression,
IObservable<TValue> changed, BindingDirection direction, IDisposable bindingDisposable)
{
Expand All @@ -99,7 +90,7 @@ internal class ReactiveBinding<TView, TViewModel, TValue> : IReactiveBinding<TVi
}

/// <summary>
/// The instance of the view model this binding is applied to.</param>
/// The instance of the view model this binding is applied to.
/// </summary>
/// <value>
/// The view model.
Expand Down Expand Up @@ -150,9 +141,6 @@ internal class ReactiveBinding<TView, TViewModel, TValue> : IReactiveBinding<TVi
/// </value>
public BindingDirection Direction { get; private set; }

/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
public void Dispose()
{
if (bindingDisposable != null) {
Expand Down

0 comments on commit 73cd42e

Please sign in to comment.