Lucene.Net.Util.WeakIdentityMap: Corrected documentation to reflect that Keys and Values properties return IEnumerable<T> instead of ICollection<T>
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6f24c032 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6f24c032 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6f24c032 Branch: refs/heads/master Commit: 6f24c032c3ff6d2b2e822f3d5f26761fc1831b92 Parents: e837081 Author: Shad Storhaug <[email protected]> Authored: Sat Jun 17 14:17:33 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sat Jun 17 14:17:33 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net/Util/WeakIdentityMap.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6f24c032/src/Lucene.Net/Util/WeakIdentityMap.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/WeakIdentityMap.cs b/src/Lucene.Net/Util/WeakIdentityMap.cs index a1ba475..8444eb6 100644 --- a/src/Lucene.Net/Util/WeakIdentityMap.cs +++ b/src/Lucene.Net/Util/WeakIdentityMap.cs @@ -158,9 +158,9 @@ namespace Lucene.Net.Util } /// <summary> - /// Gets an <see cref="ICollection{TKey}"/> object containing the keys of the <see cref="WeakIdentityMap{TKey, TValue}"/>. + /// Gets an <see cref="IEnumerable{TKey}"/> object containing the keys of the <see cref="WeakIdentityMap{TKey, TValue}"/>. /// </summary> - public IEnumerable<TKey> Keys // LUCENENET TODO: API - change to ICollection<T> + public IEnumerable<TKey> Keys { get { @@ -197,9 +197,9 @@ namespace Lucene.Net.Util } /// <summary> - /// Gets an <see cref="ICollection{TKey}"/> object containing the values of the <see cref="WeakIdentityMap{TKey, TValue}"/>. + /// Gets an <see cref="IEnumerable{TKey}"/> object containing the values of the <see cref="WeakIdentityMap{TKey, TValue}"/>. /// </summary> - public IEnumerable<TValue> Values // LUCENENET TODO: API - change to ICollection<T> + public IEnumerable<TValue> Values { get {
