Skip to content

Commit

Permalink
Fix compiler warning about hidden type param.
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Jun 8, 2015
1 parent 2c70c29 commit 6ff5f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sharpen/Sharpen/EnumeratorWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public override void Remove ()
col.Remove (lastVal);
}

private static IEnumerator<T> GetEnumerator<T>(IEnumerable<T> keys)
private static IEnumerator<T> GetEnumerator(IEnumerable<T> keys)
{
return keys.Iterator();
}
Expand Down

0 comments on commit 6ff5f41

Please sign in to comment.