Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0E368200C1C for ; Tue, 31 Jan 2017 18:55:37 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0D485160B7A; Tue, 31 Jan 2017 17:55:37 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 11053160B6B for ; Tue, 31 Jan 2017 18:55:35 +0100 (CET) Received: (qmail 44882 invoked by uid 500); 31 Jan 2017 17:55:35 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 44416 invoked by uid 99); 31 Jan 2017 17:55:34 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 31 Jan 2017 17:55:34 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83B1DF402C; Tue, 31 Jan 2017 17:55:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nightowl888@apache.org To: commits@lucenenet.apache.org Date: Tue, 31 Jan 2017 17:55:40 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [07/50] [abbrv] lucenenet git commit: Lucene.Net.Core.Support: Deleted unused Compare class archived-at: Tue, 31 Jan 2017 17:55:37 -0000 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 Authored: Tue Jan 31 11:28:51 2017 +0700 Committer: Shad Storhaug 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 @@ - 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 description for TestSupportClass. - /// - public class Compare - { - /// - /// Compares two Term arrays for equality. - /// - /// First Term array to compare - /// Second Term array to compare - /// true if the Terms are equal in both arrays, false otherwise - 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