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/01/31 17:55:40 UTC

[07/50] [abbrv] lucenenet git commit: Lucene.Net.Core.Support: Deleted unused Compare class

Lucene.Net.Core.Support: Deleted unused Compare class


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

Branch: refs/heads/api-work
Commit: 516c107df45dc87e2e99b4483c69381dc8a6ba8b
Parents: a05b942
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Tue Jan 31 11:28:51 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Tue Jan 31 11:28:51 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Core/Lucene.Net.csproj  |  1 -
 src/Lucene.Net.Core/Support/Compare.cs | 49 -----------------------------
 2 files changed, 50 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/516c107d/src/Lucene.Net.Core/Lucene.Net.csproj
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Lucene.Net.csproj b/src/Lucene.Net.Core/Lucene.Net.csproj
index 7dc01d3..7a3d16e 100644
--- a/src/Lucene.Net.Core/Lucene.Net.csproj
+++ b/src/Lucene.Net.Core/Lucene.Net.csproj
@@ -669,7 +669,6 @@
     <Compile Include="Support\TreeSet.cs" />
     <Compile Include="Support\UnmodifiableDictionary.cs" />
     <Compile Include="Support\CloseableThreadLocalProfiler.cs" />
-    <Compile Include="Support\Compare.cs" />
     <Compile Include="Support\Compatibility\ConcurrentDictionary.cs" />
     <Compile Include="Support\Compatibility\Func.cs" />
     <Compile Include="Support\Compatibility\ISet.cs" />

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/516c107d/src/Lucene.Net.Core/Support/Compare.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Support/Compare.cs b/src/Lucene.Net.Core/Support/Compare.cs
deleted file mode 100644
index 0301f67..0000000
--- a/src/Lucene.Net.Core/Support/Compare.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-namespace Lucene.Net.Support
-{
-    /// <summary>
-    /// Summary description for TestSupportClass.
-    /// </summary>
-    public class Compare
-    {
-        /// <summary>
-        /// Compares two Term arrays for equality.
-        /// </summary>
-        /// <param name="t1">First Term array to compare</param>
-        /// <param name="t2">Second Term array to compare</param>
-        /// <returns>true if the Terms are equal in both arrays, false otherwise</returns>
-        public static bool CompareTermArrays(Index.Term[] t1, Index.Term[] t2)
-        {
-            if (t1.Length != t2.Length)
-                return false;
-            for (int i = 0; i < t1.Length; i++)
-            {
-                if (t1[i].CompareTo(t2[i]) == 0)
-                {
-                    return true;
-                }
-            }
-            return false;
-        }
-    }
-}
\ No newline at end of file