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 C0E5C200C1F for ; Fri, 3 Feb 2017 10:33:14 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id BFB56160B64; Fri, 3 Feb 2017 09:33:14 +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 1D735160B6C for ; Fri, 3 Feb 2017 10:33:13 +0100 (CET) Received: (qmail 81351 invoked by uid 500); 3 Feb 2017 09:33:13 -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 81162 invoked by uid 99); 3 Feb 2017 09:33:13 -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; Fri, 03 Feb 2017 09:33:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F1F1AE01C8; Fri, 3 Feb 2017 09:33:12 +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: Fri, 03 Feb 2017 09:33:20 -0000 Message-Id: <8aff06f1c63642d6bf2924c9fe8da541@git.apache.org> In-Reply-To: <32277a342bab4e4eb8650457ca0b7129@git.apache.org> References: <32277a342bab4e4eb8650457ca0b7129@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [9/9] lucenenet git commit: Lucene.Net.Analysis.Hy refactor: member accessibility and documentation comments archived-at: Fri, 03 Feb 2017 09:33:14 -0000 Lucene.Net.Analysis.Hy refactor: member accessibility and documentation comments Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/a4828b1a Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/a4828b1a Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/a4828b1a Branch: refs/heads/api-work Commit: a4828b1ad1814da6c75daf8335df4ee103d8941b Parents: da08b94 Author: Shad Storhaug Authored: Fri Feb 3 16:29:09 2017 +0700 Committer: Shad Storhaug Committed: Fri Feb 3 16:29:09 2017 +0700 ---------------------------------------------------------------------- .../Analysis/Hy/ArmenianAnalyzer.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a4828b1a/src/Lucene.Net.Analysis.Common/Analysis/Hy/ArmenianAnalyzer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Hy/ArmenianAnalyzer.cs b/src/Lucene.Net.Analysis.Common/Analysis/Hy/ArmenianAnalyzer.cs index bec70b7..f6a5cdc 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/Hy/ArmenianAnalyzer.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/Hy/ArmenianAnalyzer.cs @@ -50,7 +50,7 @@ namespace Lucene.Net.Analysis.Hy } /// - /// Atomically loads the DEFAULT_STOP_SET in a lazy fashion once the outer class + /// Atomically loads the in a lazy fashion once the outer class /// accesses the static final set the first time.; /// private class DefaultSetHolder @@ -74,10 +74,11 @@ namespace Lucene.Net.Analysis.Hy } /// - /// Builds an analyzer with the default stop words: . + /// Builds an analyzer with the default stop words: . /// + /// lucene compatibility version public ArmenianAnalyzer(LuceneVersion matchVersion) - : this(matchVersion, DefaultSetHolder.DEFAULT_STOP_SET) + : this(matchVersion, DefaultSetHolder.DEFAULT_STOP_SET) { } @@ -87,7 +88,7 @@ namespace Lucene.Net.Analysis.Hy /// lucene compatibility version /// a stopword set public ArmenianAnalyzer(LuceneVersion matchVersion, CharArraySet stopwords) - : this(matchVersion, stopwords, CharArraySet.EMPTY_SET) + : this(matchVersion, stopwords, CharArraySet.EMPTY_SET) { } @@ -100,7 +101,7 @@ namespace Lucene.Net.Analysis.Hy /// a stopword set /// a set of terms not to be stemmed public ArmenianAnalyzer(LuceneVersion matchVersion, CharArraySet stopwords, CharArraySet stemExclusionSet) - : base(matchVersion, stopwords) + : base(matchVersion, stopwords) { this.stemExclusionSet = CharArraySet.UnmodifiableSet(CharArraySet.Copy(matchVersion, stemExclusionSet)); } @@ -108,13 +109,13 @@ namespace Lucene.Net.Analysis.Hy /// /// Creates a /// - /// which tokenizes all the text in the provided . + /// which tokenizes all the text in the provided . /// /// A /// /// built from an filtered with - /// , , - /// , if a stem exclusion set is + /// , , , + /// if a stem exclusion set is /// provided and . protected override TokenStreamComponents CreateComponents(string fieldName, TextReader reader) {