Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit ab5c076

Browse files
committed
Fix build
1 parent c10f9ed commit ab5c076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports.Reactive/Collections/ITrackingCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public interface ITrackingCollection<T> : IDisposable, IList<T> where T : ICopya
3838
/// <param name="theFilter">The new filter, or null to not have any filtering</param>
3939
void SetFilter(Func<T, int, IList<T>, bool> filter);
4040
void AddItem(T item);
41-
void RemoveItem(T item);
41+
T RemoveItem(T item);
4242
event NotifyCollectionChangedEventHandler CollectionChanged;
4343
}
4444
}

0 commit comments

Comments
 (0)