Browse Source

Remove pointless code.

pull/839/head
Steven Kirk 9 years ago
parent
commit
f63a64e11b
  1. 4
      src/Avalonia.Controls/ScrollViewer.cs

4
src/Avalonia.Controls/ScrollViewer.cs

@ -157,10 +157,6 @@ namespace Avalonia.Controls
/// </summary>
public ScrollViewer()
{
Observable.CombineLatest(
this.GetObservable(ExtentProperty),
this.GetObservable(ViewportProperty))
.Select(x => new { Extent = x[0], Viewport = x[1] });
}
/// <summary>

Loading…
Cancel
Save