Skip to content

Commit

Permalink
Update ListExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pretasoc committed Mar 5, 2018
1 parent 9e6ccb2 commit 927b22a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phirSOFT.ConstraintedComparison/ListExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void Insert<T>(this IList<T> list, T item, ITopologicalComparer<T>
/// <param name="item">The item to insert.</param>
public static void Insert<T>(this LinkedList<T> list, T item)
{
return list.Insert(item, TopologicalComparer<T>.Default);
list.Insert(item, TopologicalComparer<T>.Default);
}

/// <summary>
Expand Down

0 comments on commit 927b22a

Please sign in to comment.