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 1e1931cd20bde8e1cad776f641c48938fd29568b Author: Shad Storhaug <[email protected]> AuthorDate: Wed Oct 30 23:39:32 2019 +0700 Lucene.Net.Support.TreeSet: Normalized whitespace --- src/Lucene.Net/Support/TreeSet.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Lucene.Net/Support/TreeSet.cs b/src/Lucene.Net/Support/TreeSet.cs index f07f4f5..2fbe6be 100644 --- a/src/Lucene.Net/Support/TreeSet.cs +++ b/src/Lucene.Net/Support/TreeSet.cs @@ -228,7 +228,7 @@ namespace Lucene.Net.Support /// </summary> /// <exception cref="NotComparableException">If <code>T</code> is not comparable. /// </exception> - public TreeSet(MemoryType memoryType = MemoryType.Normal) : this(SCG.Comparer<T>.Default, C5.EqualityComparer<T>.Default, memoryType) { } + public TreeSet(MemoryType memoryType = MemoryType.Normal) : this(SCG.Comparer<T>.Default, C5.EqualityComparer<T>.Default, memoryType) { } /// <summary> @@ -242,8 +242,8 @@ namespace Lucene.Net.Support /// </para> /// </summary> /// <param name="comparer">The external comparer</param> - /// <param name = "memoryType"></param> - public TreeSet(SCG.IComparer<T> comparer, MemoryType memoryType = MemoryType.Normal) : this(comparer, new ComparerZeroHashCodeEqualityComparer<T>(comparer)) { } + /// <param name = "memoryType"></param> + public TreeSet(SCG.IComparer<T> comparer, MemoryType memoryType = MemoryType.Normal) : this(comparer, new ComparerZeroHashCodeEqualityComparer<T>(comparer)) { } /// <summary> /// Create a red-black tree collection with an external comparer and an external @@ -251,8 +251,8 @@ namespace Lucene.Net.Support /// </summary> /// <param name="comparer">The external comparer</param> /// <param name="equalityComparer">The external item equalitySCG.Comparer</param> - /// <param name = "memoryType"></param> - public TreeSet(SCG.IComparer<T> comparer, SCG.IEqualityComparer<T> equalityComparer, MemoryType memoryType = MemoryType.Normal) + /// <param name = "memoryType"></param> + public TreeSet(SCG.IComparer<T> comparer, SCG.IEqualityComparer<T> equalityComparer, MemoryType memoryType = MemoryType.Normal) : base(equalityComparer, memoryType) { if (comparer == null)
