Skip to content

Commit c66674b

Browse files
authored
housekeeping: resolve broken build due to NET45 compilation symbol (#1626)
1 parent 28e15d0 commit c66674b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/ReactiveUI.Tests/API/ApiApprovalTests.ReactiveUI.approved.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,8 @@ namespace ReactiveUI
599599
public virtual void Move(int oldIndex, int newIndex) { }
600600
protected void MoveItem(int oldIndex, int newIndex) { }
601601
protected virtual void publishResetNotification() { }
602-
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
603-
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
602+
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
603+
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
604604
public virtual bool Remove(T item) { }
605605
public virtual void RemoveAll(System.Collections.Generic.IEnumerable<T> items) { }
606606
public virtual void RemoveAt(int index) { }

src/ReactiveUI/ReactiveList.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ public event NotifyCollectionChangedEventHandler CollectionChanged
7777
remove { CollectionChangedEventManager.RemoveHandler(this, value); }
7878
}
7979

80-
protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs e)
80+
protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs args)
8181
{
82-
CollectionChangingEventManager.DeliverEvent(this, e);
82+
CollectionChangingEventManager.DeliverEvent(this, args);
8383
}
8484

85-
protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs e)
85+
protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs args)
8686
{
87-
CollectionChangedEventManager.DeliverEvent(this, e);
87+
CollectionChangedEventManager.DeliverEvent(this, args);
8888
}
8989

9090
public event PropertyChangingEventHandler PropertyChanging

0 commit comments

Comments
 (0)