Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs')
-rw-r--r--mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs b/mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs
index 99d9d11420e..e788bf17caa 100644
--- a/mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs
+++ b/mcs/tools/monodoc/Lucene.Net/Test/Analysis/TestStopAnalyzer.cs
@@ -63,11 +63,11 @@ namespace Lucene.Net.Analysis
stopWordsSet.Add("analyzer", "analyzer");
// {{Aroush how can we copy 'stopWordsSet' to 'System.String[]'?
- System.String[] arrStopWordsSet = new System.String[3];
- arrStopWordsSet[0] = "good";
- arrStopWordsSet[1] = "test";
- arrStopWordsSet[2] = "analyzer";
- // Aroush}}
+ System.String[] arrStopWordsSet = new System.String[3];
+ arrStopWordsSet[0] = "good";
+ arrStopWordsSet[1] = "test";
+ arrStopWordsSet[2] = "analyzer";
+ // Aroush}}
StopAnalyzer newStop = new StopAnalyzer(arrStopWordsSet);
System.IO.StringReader reader = new System.IO.StringReader("This is a good test of the english stop analyzer");