This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit ef98efb47495b5639a7ab0768423946db7f499b6
Author: Shad Storhaug <s...@shadstorhaug.com>
AuthorDate: Mon Oct 28 23:41:48 2019 +0700

    Lucene.Net.Support.TreeDictionary: Normalized whitespace
---
 src/Lucene.Net/Support/TreeDictionary.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Lucene.Net/Support/TreeDictionary.cs 
b/src/Lucene.Net/Support/TreeDictionary.cs
index fe43a57..4d647b7 100644
--- a/src/Lucene.Net/Support/TreeDictionary.cs
+++ b/src/Lucene.Net/Support/TreeDictionary.cs
@@ -40,14 +40,14 @@ namespace Lucene.Net.Support
         /// Create a red-black tree dictionary using the natural comparer for 
keys.
         /// <exception cref="ArgumentException"/> if the key type K is not 
comparable.
         /// </summary>
-               public TreeDictionary(MemoryType memoryType = 
MemoryType.Normal) : this(SCG.Comparer<K>.Default, 
C5.EqualityComparer<K>.Default, memoryType) { }
+        public TreeDictionary(MemoryType memoryType = MemoryType.Normal) : 
this(SCG.Comparer<K>.Default, C5.EqualityComparer<K>.Default, memoryType) { }
 
         /// <summary>
         /// Create a red-black tree dictionary using an external comparer for 
keys.
         /// </summary>
         /// <param name="comparer">The external comparer</param>
-               /// <param name = "memoryType"></param>
-               public TreeDictionary(SCG.IComparer<K> comparer, MemoryType 
memoryType = MemoryType.Normal) : this(comparer, new 
ComparerZeroHashCodeEqualityComparer<K>(comparer)) { }
+        /// <param name = "memoryType"></param>
+        public TreeDictionary(SCG.IComparer<K> comparer, MemoryType memoryType 
= MemoryType.Normal) : this(comparer, new 
ComparerZeroHashCodeEqualityComparer<K>(comparer)) { }
 
         TreeDictionary(SCG.IComparer<K> comparer, SCG.IEqualityComparer<K> 
equalityComparer, MemoryType memoryType = MemoryType.Normal)
             : base(comparer, equalityComparer, memoryType)

Reply via email to