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 EAE58200BB9 for ; Sun, 2 Oct 2016 16:35:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E9A9C160AC7; Sun, 2 Oct 2016 14:35:23 +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 31E00160AF1 for ; Sun, 2 Oct 2016 16:35:22 +0200 (CEST) Received: (qmail 94884 invoked by uid 500); 2 Oct 2016 14:35:20 -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 94205 invoked by uid 99); 2 Oct 2016 14:35:20 -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; Sun, 02 Oct 2016 14:35:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2F6D2E09D0; Sun, 2 Oct 2016 14:35:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: synhershko@apache.org To: commits@lucenenet.apache.org Date: Sun, 02 Oct 2016 14:35:44 -0000 Message-Id: <8187dfc9dccd4e0e8285a5072c61df91@git.apache.org> In-Reply-To: <6014ffb9c2e748049fcffef430b6e351@git.apache.org> References: <6014ffb9c2e748049fcffef430b6e351@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [26/50] [abbrv] lucenenet git commit: Normalized Suggest license headers. archived-at: Sun, 02 Oct 2016 14:35:24 -0000 Normalized Suggest license headers. Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/2a232718 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/2a232718 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/2a232718 Branch: refs/heads/master Commit: 2a23271882cbcc56e602ad2ae5a3c07812cbd3c9 Parents: 9a6f973 Author: Shad Storhaug Authored: Sat Sep 17 00:02:59 2016 +0700 Committer: Shad Storhaug Committed: Sun Oct 2 17:44:43 2016 +0700 ---------------------------------------------------------------------- .../Spell/HighFrequencyDictionary.cs | 35 ++++++++++---------- src/Lucene.Net.Suggest/Spell/NGramDistance.cs | 32 +++++++++--------- src/Lucene.Net.Suggest/Spell/SpellChecker.cs | 1 - 3 files changed, 34 insertions(+), 34 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2a232718/src/Lucene.Net.Suggest/Spell/HighFrequencyDictionary.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Suggest/Spell/HighFrequencyDictionary.cs b/src/Lucene.Net.Suggest/Spell/HighFrequencyDictionary.cs index 9a7e243..677b87e 100644 --- a/src/Lucene.Net.Suggest/Spell/HighFrequencyDictionary.cs +++ b/src/Lucene.Net.Suggest/Spell/HighFrequencyDictionary.cs @@ -1,26 +1,27 @@ -/* - * 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. - */ -using Lucene.Net.Index; +using Lucene.Net.Index; using Lucene.Net.Search.Suggest; using Lucene.Net.Util; using System.Collections.Generic; namespace Lucene.Net.Search.Spell { + /* + * 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. + */ + /// /// HighFrequencyDictionary: terms taken from the given field /// of a Lucene index, which appear in a number of documents http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2a232718/src/Lucene.Net.Suggest/Spell/NGramDistance.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Suggest/Spell/NGramDistance.cs b/src/Lucene.Net.Suggest/Spell/NGramDistance.cs index 7d52afe..f3670d6 100644 --- a/src/Lucene.Net.Suggest/Spell/NGramDistance.cs +++ b/src/Lucene.Net.Suggest/Spell/NGramDistance.cs @@ -2,22 +2,22 @@ namespace Lucene.Net.Search.Spell { - /// - /// 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. - /// + /* + * 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. + */ /// /// N-Gram version of edit distance based on paper by Grzegorz Kondrak, http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2a232718/src/Lucene.Net.Suggest/Spell/SpellChecker.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Suggest/Spell/SpellChecker.cs b/src/Lucene.Net.Suggest/Spell/SpellChecker.cs index 524a40b..3ab001b 100644 --- a/src/Lucene.Net.Suggest/Spell/SpellChecker.cs +++ b/src/Lucene.Net.Suggest/Spell/SpellChecker.cs @@ -8,7 +8,6 @@ using Directory = Lucene.Net.Store.Directory; namespace Lucene.Net.Search.Spell { - /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with