Skip to content

Commit

Permalink
Merge pull request #1628 from reactiveui/develop
Browse files Browse the repository at this point in the history
Ship ReactiveUI v8.0.1 (v2)
  • Loading branch information
ghuntley committed May 9, 2018
2 parents c2e58fa + c66674b commit 5040324
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/EventBuilder/Platforms/XamForms.cs
Expand Up @@ -39,7 +39,7 @@ public XamForms()
var packageManager = new PackageManager(repo, packageUnzipPath);
var package = repo.FindPackagesById(_packageName).Single(x => x.IsLatestVersion);
var package = repo.FindPackagesById(_packageName).Single(x => x.Version.ToString() == "2.5.1.444934");
Log.Debug("Using Xamarin Forms {Version} released on {Published}", package.Version, package.Published);
Log.Debug("{ReleaseNotes}", package.ReleaseNotes);
Expand Down
Expand Up @@ -599,8 +599,8 @@ namespace ReactiveUI
public virtual void Move(int oldIndex, int newIndex) { }
protected void MoveItem(int oldIndex, int newIndex) { }
protected virtual void publishResetNotification() { }
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { }
protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args) { }
public virtual bool Remove(T item) { }
public virtual void RemoveAll(System.Collections.Generic.IEnumerable<T> items) { }
public virtual void RemoveAt(int index) { }
Expand Down
8 changes: 4 additions & 4 deletions src/ReactiveUI/ReactiveList.cs
Expand Up @@ -77,14 +77,14 @@ void IReactiveObject.RaisePropertyChanged(PropertyChangedEventArgs args)
remove { CollectionChangedEventManager.RemoveHandler(this, value); }
}

protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs e)
protected virtual void raiseCollectionChanging(NotifyCollectionChangedEventArgs args)
{
CollectionChangingEventManager.DeliverEvent(this, e);
CollectionChangingEventManager.DeliverEvent(this, args);
}

protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs e)
protected virtual void raiseCollectionChanged(NotifyCollectionChangedEventArgs args)
{
CollectionChangedEventManager.DeliverEvent(this, e);
CollectionChangedEventManager.DeliverEvent(this, args);
}

public event PropertyChangingEventHandler PropertyChanging
Expand Down

0 comments on commit 5040324

Please sign in to comment.