You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/06/22 05:25:14 UTC

[13/38] lucenenet git commit: API: Lucene.Net.Util.RamUsageEstimator.IdentityHashSet: Changed accessibility from public to internal (as it was in Lucene)

API: Lucene.Net.Util.RamUsageEstimator.IdentityHashSet<KType>: Changed accessibility from public to internal (as it was in Lucene)


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/43e0ea49
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/43e0ea49
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/43e0ea49

Branch: refs/heads/master
Commit: 43e0ea49cbbc05f2b0061e6067546cdaba1ad9e0
Parents: 5ebf735
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Sat Jun 17 13:59:02 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Sat Jun 17 13:59:02 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net/Util/RamUsageEstimator.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/43e0ea49/src/Lucene.Net/Util/RamUsageEstimator.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net/Util/RamUsageEstimator.cs b/src/Lucene.Net/Util/RamUsageEstimator.cs
index 6dc5a14..f00dcce 100644
--- a/src/Lucene.Net/Util/RamUsageEstimator.cs
+++ b/src/Lucene.Net/Util/RamUsageEstimator.cs
@@ -697,7 +697,7 @@ namespace Lucene.Net.Util
         /// <para/>
         /// TODO: If this is useful outside this class, make it public - needs some work
         /// </summary>
-        public sealed class IdentityHashSet<KType> : IEnumerable<KType> // LUCENENET TODO: API - This was internal in Lucene
+        internal sealed class IdentityHashSet<KType> : IEnumerable<KType>
         {
             /// <summary>
             /// Default load factor.