Skip to content

Commit

Permalink
Removing meaningless comment for iterators :)
Browse files Browse the repository at this point in the history
  • Loading branch information
mina-asham committed May 17, 2015
1 parent cd56fb8 commit 7e14e1a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion algs4/algs4/IndexMaxPQ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@ private void Sink(int k)
/// <summary>
/// Returns an iterator that iterates over the keys on the
/// priority queue in descending order.
/// The iterator doesn't implement remove() since it's optional.
/// </summary>
/// <returns>an iterator that iterates over the keys in descending order</returns>
public IEnumerator<int> GetEnumerator()
Expand Down
1 change: 0 additions & 1 deletion algs4/algs4/IndexMinPQ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ private void Sink(int k)
/// <summary>
/// Returns an iterator that iterates over the keys on the
/// priority queue in ascending order.
/// The iterator doesn't implement remove() since it's optional.
/// </summary>
/// <returns>an iterator that iterates over the keys in ascending order</returns>
public IEnumerator<int> GetEnumerator()
Expand Down
1 change: 0 additions & 1 deletion algs4/algs4/MaxPQ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ private bool IsMaxHeap(int k)
/// <summary>
/// Returns an iterator that iterates over the keys on the priority queue
/// in descending order.
/// The iterator doesn't implement remove() since it's optional.
/// </summary>
/// <returns>an iterator that iterates over the keys in descending order</returns>
public IEnumerator<TKey> GetEnumerator()
Expand Down
2 changes: 1 addition & 1 deletion algs4/algs4/ResizingArrayBag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ IEnumerator IEnumerable.GetEnumerator()
}

/// <summary>
/// An iterator, doesn't implement remove() since it's optional
/// An iterator
/// </summary>
private class ArrayIterator : IEnumerator<TItem>
{
Expand Down

0 comments on commit 7e14e1a

Please sign in to comment.