You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ar...@apache.org on 2007/08/13 15:35:28 UTC

svn commit: r565349 - /incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs

Author: aroush
Date: Mon Aug 13 06:35:26 2007
New Revision: 565349

URL: http://svn.apache.org/viewvc?view=rev&rev=565349
Log:
Removed "t" from the list of stop-words.

Modified:
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Analysis/StopAnalyzer.cs?view=diff&rev=565349&r1=565348&r2=565349
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs Mon Aug 13 06:35:26 2007
@@ -29,7 +29,7 @@
         /// <summary>An array containing some common English words that are not usually useful
         /// for searching. 
         /// </summary>
-        public static readonly System.String[] ENGLISH_STOP_WORDS = new System.String[]{"a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "such", "t", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"};
+        public static readonly System.String[] ENGLISH_STOP_WORDS = new System.String[]{"a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"};
 		
         /// <summary>Builds an analyzer which removes words in ENGLISH_STOP_WORDS. </summary>
         public StopAnalyzer()