You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by cc...@apache.org on 2012/10/05 23:22:59 UTC

svn commit: r1394820 [5/6] - in /lucene.net/trunk: src/contrib/Analyzers/ src/contrib/Analyzers/AR/ src/contrib/Analyzers/BR/ src/contrib/Analyzers/CJK/ src/contrib/Analyzers/Compound/ src/contrib/Analyzers/Compound/Hyphenation/ src/contrib/Analyzers/C...

Modified: lucene.net/trunk/src/core/Search/Similarity.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/Similarity.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/Similarity.cs (original)
+++ lucene.net/trunk/src/core/Search/Similarity.cs Fri Oct  5 21:22:51 2012
@@ -54,7 +54,7 @@ namespace Lucene.Net.Search
 	/// <big><big>(</big></big>
 	/// <A HREF="#formula_tf">tf(t in d)</A> &#160;&#183;&#160;
 	/// <A HREF="#formula_idf">idf(t)</A><sup>2</sup> &#160;&#183;&#160;
-	/// <A HREF="#formula_termBoost">t.getBoost()</A>&#160;&#183;&#160;
+	/// <A HREF="#formula_termBoost">t.Boost</A>&#160;&#183;&#160;
 	/// <A HREF="#formula_norm">norm(t,d)</A>
 	/// <big><big>)</big></big>
 	/// </td>
@@ -180,8 +180,8 @@ namespace Lucene.Net.Search
 	/// <table cellpadding="1" cellspacing="0" border="0" align="center">
 	/// <tr>
 	/// <td valign="middle" align="right" rowspan="1">
-    /// <see cref="Lucene.Net.Search.Weight.SumOfSquaredWeights()">sumOfSquaredWeights</see> &#160; = &#160;
-    /// <see cref="Lucene.Net.Search.Query.GetBoost()">q.getBoost()</see> <sup><big>2</big></sup>
+    /// <see cref="Lucene.Net.Search.Weight.GetSumOfSquaredWeights">GetSumOfSquaredWeights</see> &#160; = &#160;
+    /// <see cref="Lucene.Net.Search.Query.Boost">q.Boost</see> <sup><big>2</big></sup>
 	/// &#160;&#183;&#160;
 	/// </td>
 	/// <td valign="bottom" align="center" rowspan="1">
@@ -190,7 +190,7 @@ namespace Lucene.Net.Search
 	/// <td valign="middle" align="right" rowspan="1">
 	/// <big><big>(</big></big>
 	/// <A HREF="#formula_idf">idf(t)</A> &#160;&#183;&#160;
-	/// <A HREF="#formula_termBoost">t.getBoost()</A>
+	/// <A HREF="#formula_termBoost">t.Boost</A>
 	/// <big><big>) <sup>2</sup> </big></big>
 	/// </td>
 	/// </tr>
@@ -206,17 +206,17 @@ namespace Lucene.Net.Search
 	/// 
 	/// <item>
 	/// <A NAME="formula_termBoost"></A>
-	/// <b>t.getBoost()</b>
+	/// <b>t.Boost</b>
 	/// is a search time boost of term <i>t</i> in the query <i>q</i> as
 	/// specified in the query text
 	/// (see <A HREF="../../../../../../queryparsersyntax.html#Boosting a Term">query syntax</A>),
 	/// or as set by application calls to
-	/// <see cref="Lucene.Net.Search.Query.SetBoost(float)" />.
+	/// <see cref="Lucene.Net.Search.Query.Boost" />.
 	/// Notice that there is really no direct API for accessing a boost of one term in a multi term query,
 	/// but rather multi terms are represented in a query as multi
 	/// <see cref="Lucene.Net.Search.TermQuery">TermQuery</see> objects,
 	/// and so the boost of a term in the query is accessible by calling the sub-query
-    /// <see cref="Lucene.Net.Search.Query.GetBoost()" />.
+    /// <see cref="Lucene.Net.Search.Query.Boost" />.
 	/// <br/>&#160;<br/>
 	/// </item>
 	/// 
@@ -226,11 +226,11 @@ namespace Lucene.Net.Search
 	/// 
 	/// <list type="bullet">
 	/// <item><b>Document boost</b> - set by calling 
-    /// <see cref="Lucene.Net.Documents.Document.SetBoost(float)">doc.setBoost()</see>
+    /// <see cref="Lucene.Net.Documents.Document.Boost">doc.Boost</see>
 	/// before adding the document to the index.
 	/// </item>
 	/// <item><b>Field boost</b> - set by calling 
-    /// <see cref="IFieldable.SetBoost(float)">field.SetBoost()</see>
+    /// <see cref="IFieldable.Boost">field.Boost</see>
 	/// before adding the field to a document.
 	/// </item>
 	/// <item><see cref="LengthNorm(String, int)">LengthNorm(field)</see> - computed
@@ -249,7 +249,7 @@ namespace Lucene.Net.Search
 	/// <tr>
 	/// <td valign="middle" align="right" rowspan="1">
 	/// norm(t,d) &#160; = &#160;
-    /// <see cref="Lucene.Net.Documents.Document.GetBoost()">doc.GetBoost()</see>
+    /// <see cref="Lucene.Net.Documents.Document.Boost">doc.Boost</see>
 	/// &#160;&#183;&#160;
     /// <see cref="LengthNorm(String, int)">LengthNorm(field)</see>
 	/// &#160;&#183;&#160;
@@ -258,7 +258,7 @@ namespace Lucene.Net.Search
     /// <big><big><big>&#8719;</big></big></big>
 	/// </td>
 	/// <td valign="middle" align="right" rowspan="1">
-	/// <see cref="IFieldable.GetBoost()">field.GetBoost()</see>
+	/// <see cref="IFieldable.Boost">field.Boost</see>
 	/// </td>
 	/// </tr>
 	/// <tr valigh="top">
@@ -283,11 +283,11 @@ namespace Lucene.Net.Search
 	/// </list>
 	/// 
 	/// </summary>
-	/// <seealso cref="SetDefault(Similarity)">
+	/// <seealso cref="Default">
 	/// </seealso>
-	/// <seealso cref="Lucene.Net.Index.IndexWriter.SetSimilarity(Similarity)">
+	/// <seealso cref="Lucene.Net.Index.IndexWriter.Similarity">
 	/// </seealso>
-	/// <seealso cref="Searcher.SetSimilarity(Similarity)">
+	/// <seealso cref="Searcher.Similarity">
 	/// </seealso>
 	[Serializable]
 	public abstract class Similarity
@@ -421,8 +421,8 @@ namespace Lucene.Net.Search
 		/// 
 		/// <p/>For backward compatibility this method by default calls
 		/// <see cref="LengthNorm(String, int)" /> passing
-		/// <see cref="FieldInvertState.GetLength()" /> as the second argument, and
-		/// then multiplies this value by <see cref="FieldInvertState.GetBoost()" />.<p/>
+		/// <see cref="FieldInvertState.Length" /> as the second argument, and
+		/// then multiplies this value by <see cref="FieldInvertState.Boost" />.<p/>
 		/// 
 		/// <p/><b>WARNING</b>: This API is new and experimental and may
 		/// suddenly change.<p/>
@@ -464,8 +464,7 @@ namespace Lucene.Net.Search
 		/// <returns> a normalization factor for hits on this field of this document
 		/// 
 		/// </returns>
-		/// <seealso cref="Lucene.Net.Documents.AbstractField.SetBoost(float)">
-		/// </seealso>
+		/// <seealso cref="Lucene.Net.Documents.AbstractField.Boost" />
 		public abstract float LengthNorm(System.String fieldName, int numTokens);
 		
 		/// <summary>Computes the normalization value for a query given the sum of the squared
@@ -494,10 +493,8 @@ namespace Lucene.Net.Search
 		/// value.
 		/// 
 		/// </summary>
-		/// <seealso cref="Lucene.Net.Documents.AbstractField.SetBoost(float)">
-		/// </seealso>
-		/// <seealso cref="Lucene.Net.Util.SmallFloat">
-		/// </seealso>
+		/// <seealso cref="Lucene.Net.Documents.AbstractField.Boost" />
+		/// <seealso cref="Lucene.Net.Util.SmallFloat" />
 		public static byte EncodeNorm(float f)
 		{
 			return (byte) SmallFloat.FloatToByte315(f);
@@ -536,12 +533,9 @@ namespace Lucene.Net.Search
 		/// when it is large.
 		/// 
 		/// </summary>
-		/// <seealso cref="PhraseQuery.SetSlop(int)">
-		/// </seealso>
-		/// <param name="distance">the edit distance of this sloppy phrase match
-		/// </param>
-		/// <returns> the frequency increment for this match
-		/// </returns>
+		/// <seealso cref="PhraseQuery.Slop" />
+		/// <param name="distance">the edit distance of this sloppy phrase match </param>
+		/// <returns> the frequency increment for this match </returns>
 		public abstract float SloppyFreq(int distance);
 		
 		/// <summary>Computes a score factor based on a term or phrase's frequency in a

Modified: lucene.net/trunk/src/core/Search/SingleTermEnum.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/SingleTermEnum.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/SingleTermEnum.cs (original)
+++ lucene.net/trunk/src/core/Search/SingleTermEnum.cs Fri Oct  5 21:22:51 2012
@@ -33,7 +33,7 @@ namespace Lucene.Net.Search
         private bool _endEnum = false;
 
         /// <summary>
-        /// Creates a new <code>SingleTermEnum</code>.
+        /// Creates a new <c>SingleTermEnum</c>.
         /// <p/>
         /// After calling the constructor the enumeration is already pointing to the term,
         ///  if it exists.

Modified: lucene.net/trunk/src/core/Search/Spans/FieldMaskingSpanQuery.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/Spans/FieldMaskingSpanQuery.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/Spans/FieldMaskingSpanQuery.cs (original)
+++ lucene.net/trunk/src/core/Search/Spans/FieldMaskingSpanQuery.cs Fri Oct  5 21:22:51 2012
@@ -30,7 +30,7 @@ namespace Lucene.Net.Search.Spans
 	/// <summary> <p/>Wrapper to allow <see cref="SpanQuery" /> objects participate in composite 
 	/// single-field SpanQueries by 'lying' about their search field. That is, 
 	/// the masked SpanQuery will function as normal, 
-	/// but <see cref="SpanQuery.GetField()" /> simply hands back the value supplied 
+	/// but <see cref="SpanQuery.Field" /> simply hands back the value supplied 
 	/// in this class's constructor.<p/>
 	/// 
 	/// <p/>This can be used to support Queries like <see cref="SpanNearQuery" /> or 
@@ -64,7 +64,7 @@ namespace Lucene.Net.Search.Spans
 	/// teacherid 1 without matching teacherid 2 (which has a 'james' in position 0 
 	/// and 'jones' in position 1). <p/>
 	/// 
-	/// <p/>Note: as <see cref="GetField()" /> returns the masked field, scoring will be 
+	/// <p/>Note: as <see cref="Field" /> returns the masked field, scoring will be 
 	/// done using the norms of the field name supplied. This may lead to unexpected
 	/// scoring behaviour.<p/>
 	/// </summary>

Modified: lucene.net/trunk/src/core/Search/TimeLimitingCollector.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/TimeLimitingCollector.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/TimeLimitingCollector.cs (original)
+++ lucene.net/trunk/src/core/Search/TimeLimitingCollector.cs Fri Oct  5 21:22:51 2012
@@ -35,7 +35,7 @@ namespace Lucene.Net.Search
 		}
 		
 		/// <summary> Default timer resolution.</summary>
-		/// <seealso cref="SetResolution(uint)">
+		/// <seealso cref="Resolution">
 		/// </seealso>
 		public const int DEFAULT_RESOLUTION = 20;
 		

Modified: lucene.net/trunk/src/core/Search/TopDocsCollector.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/TopDocsCollector.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/TopDocsCollector.cs (original)
+++ lucene.net/trunk/src/core/Search/TopDocsCollector.cs Fri Oct  5 21:22:51 2012
@@ -25,7 +25,7 @@ namespace Lucene.Net.Search
 	/// accepts a <see cref="PriorityQueue{T}" /> as well as protected members for that
 	/// priority queue and a counter of the number of total hits.<br/>
 	/// Extending classes can override <see cref="TopDocs(int, int)" /> and
-	/// <see cref="GetTotalHits()" /> in order to provide their own implementation.
+	/// <see cref="TotalHits" /> in order to provide their own implementation.
 	/// </summary>
 	public abstract class TopDocsCollector<T> : Collector where T : ScoreDoc
 	{

Modified: lucene.net/trunk/src/core/Search/TopFieldCollector.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/TopFieldCollector.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/TopFieldCollector.cs (original)
+++ lucene.net/trunk/src/core/Search/TopFieldCollector.cs Fri Oct  5 21:22:51 2012
@@ -997,7 +997,7 @@ namespace Lucene.Net.Search
 		/// </param>
 		/// <param name="trackMaxScore">specifies whether the query's maxScore should be tracked and set
 		/// on the resulting <see cref="TopDocs" />. Note that if set to false,
-		/// <see cref="TopDocs.GetMaxScore()" /> returns Float.NaN. Setting this to
+		/// <see cref="TopDocs.MaxScore" /> returns Float.NaN. Setting this to
 		/// true affects performance as it incurs the score computation on
 		/// each result. Also, setting this true automatically sets
 		/// <c>trackDocScores</c> to true as well.

Modified: lucene.net/trunk/src/core/Search/Weight.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Search/Weight.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Search/Weight.cs (original)
+++ lucene.net/trunk/src/core/Search/Weight.cs Fri Oct  5 21:22:51 2012
@@ -33,8 +33,8 @@ namespace Lucene.Net.Search
 	/// A <c>Weight</c> is used in the following way:
 	/// <list type="bullet">
 	/// <item>A <c>Weight</c> is constructed by a top-level query, given a
-	/// <c>Searcher</c> (<see cref="Query.CreateWeight(Searcher)" />).</item>
-	/// <item>The <see cref="SumOfSquaredWeights()" /> method is called on the
+	/// <c>Searcher</c> (<see cref="Lucene.Net.Search.Query.CreateWeight(Searcher)" />).</item>
+	/// <item>The <see cref="GetSumOfSquaredWeights()" /> method is called on the
 	/// <c>Weight</c> to compute the query normalization factor
 	/// <see cref="Similarity.QueryNorm(float)" /> of the query clauses contained in the
 	/// query.</item>
@@ -76,7 +76,7 @@ namespace Lucene.Net.Search
 		/// <p/>
 		/// <b>NOTE:</b> even if <c>scoreDocsInOrder</c> is false, it is
 		/// recommended to check whether the returned <c>Scorer</c> indeed scores
-		/// documents out of order (i.e., call <see cref="ScoresDocsOutOfOrder()" />), as
+		/// documents out of order (i.e., call <see cref="GetScoresDocsOutOfOrder()" />), as
 		/// some <c>Scorer</c> implementations will always return documents
 		/// in-order.<br/>
 		/// <b>NOTE:</b> null can be returned if no documents will be scored by this

Modified: lucene.net/trunk/src/core/Store/BufferedIndexOutput.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Store/BufferedIndexOutput.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Store/BufferedIndexOutput.cs (original)
+++ lucene.net/trunk/src/core/Store/BufferedIndexOutput.cs Fri Oct  5 21:22:51 2012
@@ -151,7 +151,7 @@ namespace Lucene.Net.Store
 	    }
 
 	    /// <summary>Sets current position in this file, where the next write will occur.</summary>
-		/// <seealso cref="GetFilePointer()">
+		/// <seealso cref="FilePointer">
 		/// </seealso>
 		public override void  Seek(long pos)
 		{

Modified: lucene.net/trunk/src/core/Store/CheckSumIndexOutput.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Store/CheckSumIndexOutput.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Store/CheckSumIndexOutput.cs (original)
+++ lucene.net/trunk/src/core/Store/CheckSumIndexOutput.cs Fri Oct  5 21:22:51 2012
@@ -85,7 +85,7 @@ namespace Lucene.Net.Store
 		/// <summary> Starts but does not complete the commit of this file (=
 		/// writing of the final checksum at the end).  After this
 		/// is called must call <see cref="FinishCommit" /> and the
-		/// <see cref="Close" /> to complete the commit.
+		/// <see cref="Dispose" /> to complete the commit.
 		/// </summary>
 		public virtual void  PrepareCommit()
 		{

Modified: lucene.net/trunk/src/core/Store/FSDirectory.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Store/FSDirectory.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Store/FSDirectory.cs (original)
+++ lucene.net/trunk/src/core/Store/FSDirectory.cs Fri Oct  5 21:22:51 2012
@@ -141,7 +141,7 @@ namespace Lucene.Net.Store
 		}
 		
 		/// <summary>Initializes the directory to create a new file with the given name.
-		/// This method should be used in <see cref="CreateOutput" />. 
+		/// This method should be used in <see cref="Lucene.Net.Store.Directory.CreateOutput(string)" />. 
 		/// </summary>
 		protected internal void  InitOutput(System.String name)
 		{
@@ -497,7 +497,7 @@ namespace Lucene.Net.Store
 		/// default: on 32bit JVMs, it defaults to 100 MB.  On
 		/// 64bit JVMs, it's <c>Integer.MAX_VALUE</c>.
 		/// </summary>
-		/// <seealso cref="SetReadChunkSize">
+		/// <seealso cref="ReadChunkSize">
 		/// </seealso>
 		public static readonly int DEFAULT_READ_CHUNK_SIZE = Constants.JRE_IS_64BIT ? int.MaxValue: 100 * 1024 * 1024;
 		
@@ -507,7 +507,7 @@ namespace Lucene.Net.Store
 	    /// <summary> The maximum number of bytes to read at once from the
 	    /// underlying file during <see cref="IndexInput.ReadBytes(byte[],int,int)" />.
 	    /// </summary>
-	    /// <seealso cref="SetReadChunkSize">
+	    /// <seealso cref="ReadChunkSize">
 	    /// </seealso>
 	    public int ReadChunkSize
 	    {

Modified: lucene.net/trunk/src/core/Store/MMapDirectory.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Store/MMapDirectory.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Store/MMapDirectory.cs (original)
+++ lucene.net/trunk/src/core/Store/MMapDirectory.cs Fri Oct  5 21:22:51 2012
@@ -32,7 +32,7 @@ namespace Lucene.Net.Store
 	/// be sure your have plenty of virtual address space, e.g. by
 	/// using a 64 bit JRE, or a 32 bit JRE with indexes that are
 	/// guaranteed to fit within the address space.
-	/// On 32 bit platforms also consult <see cref="SetMaxChunkSize" />
+	/// On 32 bit platforms also consult <see cref="MaxChunkSize" />
 	/// if you have problems with mmap failing because of fragmented
 	/// address space. If you get an OutOfMemoryException, it is recommened
 	/// to reduce the chunk size, until it works.
@@ -53,7 +53,7 @@ namespace Lucene.Net.Store
 	/// an important limitation to be aware of.
 	/// 
 	/// <p/>This class supplies the workaround mentioned in the bug report
-	/// (disabled by default, see <see cref="SetUseUnmap" />), which may fail on
+	/// (disabled by default, see <see cref="UseUnmap" />), which may fail on
 	/// non-Sun JVMs. It forcefully unmaps the buffer on close by using
 	/// an undocumented internal cleanup functionality.
 	/// <see cref="UNMAP_SUPPORTED" /> is <c>true</c>, if the workaround

Modified: lucene.net/trunk/src/core/Util/AttributeSource.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Util/AttributeSource.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Util/AttributeSource.cs (original)
+++ lucene.net/trunk/src/core/Util/AttributeSource.cs Fri Oct  5 21:22:51 2012
@@ -29,7 +29,7 @@ namespace Lucene.Net.Util
 	/// and methods to add and get them. There can only be a single instance
 	/// of an attribute in the same AttributeSource instance. This is ensured
 	/// by passing in the actual type of the Attribute (Class&lt;Attribute&gt;) to 
-	/// the <see cref="AddAttribute(Type)" />, which then checks if an instance of
+	/// the <see cref="AddAttribute{T}()" />, which then checks if an instance of
 	/// that type is already present. If yes, it returns the instance, otherwise
 	/// it creates a new instance and returns it.
 	/// </summary>
@@ -174,8 +174,8 @@ namespace Lucene.Net.Util
 
         /// <summary>
         /// <b>Expert:</b> Adds a custom AttributeImpl instance with one or more Attribute interfaces.
-        /// <p><font color="red"><b>Please note:</b> It is not guaranteed, that <code>att</code> is added to
-        /// the <code>AttributeSource</code>, because the provided attributes may already exist.
+        /// <p><font color="red"><b>Please note:</b> It is not guaranteed, that <c>att</c> is added to
+        /// the <c>AttributeSource</c>, because the provided attributes may already exist.
         /// You should always retrieve the wanted attributes using <see cref="GetAttribute{T}"/> after adding
         /// with this method and cast to your class.
         /// The recommended way to use custom implementations is using an <see cref="AttributeFactory"/>

Modified: lucene.net/trunk/src/core/Util/BitUtil.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Util/BitUtil.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Util/BitUtil.cs (original)
+++ lucene.net/trunk/src/core/Util/BitUtil.cs Fri Oct  5 21:22:51 2012
@@ -80,7 +80,7 @@ namespace Lucene.Net.Util
 			int i;
 			for (i = wordOffset; i <= n - 8; i += 8)
 			{
-				/***  C macro from Hacker's Delight
+				/*  C macro from Hacker's Delight
 				#define CSA(h,l, a,b,c) \
 				{unsigned u = a ^ b; unsigned v = c; \
 				h = (a & b) | (u & v); l = u ^ v;}
@@ -331,7 +331,7 @@ namespace Lucene.Net.Util
 			int i;
 			for (i = wordOffset; i <= n - 8; i += 8)
 			{
-				/***  C macro from Hacker's Delight
+				/*  C macro from Hacker's Delight
 				#define CSA(h,l, a,b,c) \
 				{unsigned u = a ^ b; unsigned v = c; \
 				h = (a & b) | (u & v); l = u ^ v;}
@@ -457,7 +457,7 @@ namespace Lucene.Net.Util
 			int i;
 			for (i = wordOffset; i <= n - 8; i += 8)
 			{
-				/***  C macro from Hacker's Delight
+				/*  C macro from Hacker's Delight
 				#define CSA(h,l, a,b,c) \
 				{unsigned u = a ^ b; unsigned v = c; \
 				h = (a & b) | (u & v); l = u ^ v;}
@@ -579,7 +579,7 @@ namespace Lucene.Net.Util
 			int i;
 			for (i = wordOffset; i <= n - 8; i += 8)
 			{
-				/***  C macro from Hacker's Delight
+				/*  C macro from Hacker's Delight
 				#define CSA(h,l, a,b,c) \
 				{unsigned u = a ^ b; unsigned v = c; \
 				h = (a & b) | (u & v); l = u ^ v;}

Modified: lucene.net/trunk/src/core/Util/Cache/SimpleMapCache.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Util/Cache/SimpleMapCache.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Util/Cache/SimpleMapCache.cs (original)
+++ lucene.net/trunk/src/core/Util/Cache/SimpleMapCache.cs Fri Oct  5 21:22:51 2012
@@ -22,7 +22,7 @@ namespace Lucene.Net.Util.Cache
 {
 	
 	/// <summary> Simple cache implementation that uses a HashMap to store (key, value) pairs.
-	/// This cache is not synchronized, use <see cref="Cache.SynchronizedCache(Cache)" />
+    /// This cache is not synchronized, use <see cref="Cache{TKey, TValue}.SynchronizedCache(Cache{TKey, TValue})" />
 	/// if needed.
 	/// </summary>
 	public class SimpleMapCache<TKey, TValue> : Cache<TKey, TValue>

Modified: lucene.net/trunk/src/core/Util/OpenBitSet.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/core/Util/OpenBitSet.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/core/Util/OpenBitSet.cs (original)
+++ lucene.net/trunk/src/core/Util/OpenBitSet.cs Fri Oct  5 21:22:51 2012
@@ -557,7 +557,7 @@ namespace Lucene.Net.Util
 			// word to be changed.
 			int endWord = ExpandingWordNum(endIndex - 1);
 			
-			/*** Grrr, java shifting wraps around so -1L>>>64 == -1
+			/* Grrr, java shifting wraps around so -1L>>>64 == -1
 			* for that reason, make sure not to use endmask if the bits to flip will
 			* be zero in the last word (redefine endWord to be the last changed...)
 			long startmask = -1L << (startIndex & 0x3f);     // example: 11111...111000
@@ -818,19 +818,19 @@ namespace Lucene.Net.Util
 		
 		// some BitSet compatability methods
 		
-		//** see <see cref="intersect" /> */
+		//* see <see cref="intersect" /> */
 		public virtual void  And(OpenBitSet other)
 		{
 			Intersect(other);
 		}
 		
-		//** see <see cref="union" /> */
+		//* see <see cref="union" /> */
 		public virtual void  Or(OpenBitSet other)
 		{
 			Union(other);
 		}
 		
-		//** see <see cref="andNot" /> */
+		//* see <see cref="andNot" /> */
 		public virtual void  AndNot(OpenBitSet other)
 		{
 			Remove(other);

Modified: lucene.net/trunk/src/demo/Demo.Common/FileDocument.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/demo/Demo.Common/FileDocument.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/demo/Demo.Common/FileDocument.cs (original)
+++ lucene.net/trunk/src/demo/Demo.Common/FileDocument.cs Fri Oct  5 21:22:51 2012
@@ -30,13 +30,14 @@ namespace Lucene.Net.Demo
 		/// <p>
 		/// The document has three fields:
 		/// <ul>
-		/// <li><code>path</code>--containing the pathname of the file, as a stored,
-		/// untokenized field;
-		/// <li><code>modified</code>--containing the last modified date of the file as
-		/// a field as created by <a
-		/// href="lucene.document.DateTools.html">DateTools</a>; and
-		/// <li><code>contents</code>--containing the full contents of the file, as a
-		/// Reader field;
+		/// <li><c>path</c>--containing the pathname of the file, as a stored,
+        /// untokenized field;</li>
+		/// <li><c>modified</c>--containing the last modified date of the file as
+        /// a field as created by <a href="lucene.document.DateTools.html">DateTools</a>;</li>
+		/// <li><c>contents</c>--containing the full contents of the file, as a
+		/// Reader field;</li>
+		/// </ul>
+		/// </p>
 		/// </summary>
 		public static Document Document(FileInfo f)
 		{

Modified: lucene.net/trunk/src/demo/Demo.Common/HTML/HTMLParser.jj
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/demo/Demo.Common/HTML/HTMLParser.jj?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/demo/Demo.Common/HTML/HTMLParser.jj (original)
+++ lucene.net/trunk/src/demo/Demo.Common/HTML/HTMLParser.jj Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -67,7 +67,7 @@ public class HTMLParser {
     }
   }
 
-  /**
+  /*
    * @deprecated Use HTMLParser(FileInputStream) instead
    */
   public HTMLParser(File file) throws FileNotFoundException {

Modified: lucene.net/trunk/src/demo/Demo.Common/HTML/ParseException.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/demo/Demo.Common/HTML/ParseException.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/demo/Demo.Common/HTML/ParseException.cs (original)
+++ lucene.net/trunk/src/demo/Demo.Common/HTML/ParseException.cs Fri Oct  5 21:22:51 2012
@@ -108,7 +108,7 @@ namespace Lucene.Net.Demo.Html
 		/// This constructor calls its super class with the empty string
 		/// to force the "toString" method of parent class "Throwable" to
 		/// print the error message in the form:
-		/// ParseException: <result of getMessage>
+		/// ParseException: &lt;result of getMessage&gt;
 		/// </summary>
 		public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, System.String[] tokenImageVal):base("")
 		{

Modified: lucene.net/trunk/src/demo/Demo.Common/HTML/SimpleCharStream.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/src/demo/Demo.Common/HTML/SimpleCharStream.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/src/demo/Demo.Common/HTML/SimpleCharStream.cs (original)
+++ lucene.net/trunk/src/demo/Demo.Common/HTML/SimpleCharStream.cs Fri Oct  5 21:22:51 2012
@@ -238,9 +238,8 @@ namespace Lucene.Net.Demo.Html
 		
 		/// <deprecated> 
 		/// </deprecated>
-		/// <seealso cref="getEndColumn">
+		/// <seealso cref="GetEndColumn">
 		/// </seealso>
-		
 		public virtual int GetColumn()
 		{
 			return bufcolumn[bufpos];
@@ -248,7 +247,7 @@ namespace Lucene.Net.Demo.Html
 		
 		/// <deprecated> 
 		/// </deprecated>
-		/// <seealso cref="getEndLine">
+		/// <seealso cref="GetEndLine">
 		/// </seealso>
 		
 		public virtual int GetLine()

Modified: lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicAnalyzer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicAnalyzer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicAnalyzer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicAnalyzer.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -25,7 +25,7 @@ namespace Lucene.Net.Analyzers.AR
 {
 
 
-    /**
+    /*
      * Test the Arabic Analyzer
      *
      */
@@ -33,7 +33,7 @@ namespace Lucene.Net.Analyzers.AR
     public class TestArabicAnalyzer : BaseTokenStreamTestCase
     {
 
-        /** This test fails with NPE when the 
+        /* This test fails with NPE when the 
          * stopwords file is missing in classpath */
         [Test]
         public void TestResourcesAvailable()
@@ -41,7 +41,7 @@ namespace Lucene.Net.Analyzers.AR
             new ArabicAnalyzer(Version.LUCENE_CURRENT);
         }
 
-        /**
+        /*
          * Some simple tests showing some features of the analyzer, how some regular forms will conflate
          */
         [Test]
@@ -64,7 +64,7 @@ namespace Lucene.Net.Analyzers.AR
             AssertAnalyzesTo(a, "الذين ملكت أيمانكم", new String[] { "ملكت", "ايمانكم" }); // stopwords
         }
 
-        /**
+        /*
          * Simple tests to show things are getting reset correctly, etc.
          */
         [Test]
@@ -75,7 +75,7 @@ namespace Lucene.Net.Analyzers.AR
             AssertAnalyzesToReuse(a, "كبيرة", new String[] { "كبير" }); // feminine marker
         }
 
-        /**
+        /*
          * Non-arabic text gets treated in a similar way as SimpleAnalyzer.
          */
         [Test]
@@ -85,7 +85,7 @@ namespace Lucene.Net.Analyzers.AR
         "english", "text" });
         }
 
-        /**
+        /*
          * Test that custom stopwords work, and are not case-sensitive.
          */
         [Test]

Modified: lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicNormalizationFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicNormalizationFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicNormalizationFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicNormalizationFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -25,7 +25,7 @@ namespace Lucene.Net.Analyzers.AR
 {
 
 
-    /**
+    /*
      * Test the Arabic Normalization Filter
      *
      */

Modified: lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicStemFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicStemFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicStemFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/AR/TestArabicStemFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -25,7 +25,7 @@ namespace Lucene.Net.Analyzers.AR
 {
 
 
-    /**
+    /*
      * Test the Arabic Normalization Filter
      *
      */

Modified: lucene.net/trunk/test/contrib/Analyzers/Br/TestBrazilianStemmer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Br/TestBrazilianStemmer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Br/TestBrazilianStemmer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Br/TestBrazilianStemmer.cs Fri Oct  5 21:22:51 2012
@@ -31,7 +31,7 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Br
 {
-    /**
+    /*
      * Test the Brazilian Stem Filter, which only modifies the term text.
      * 
      * It is very similar to the snowball portuguese algorithm but not exactly the same.

Modified: lucene.net/trunk/test/contrib/Analyzers/Cjk/TestCJKTokenizer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Cjk/TestCJKTokenizer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Cjk/TestCJKTokenizer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Cjk/TestCJKTokenizer.cs Fri Oct  5 21:22:51 2012
@@ -290,7 +290,7 @@ namespace Lucene.Net.Analyzers.Cjk
             CheckCjkTokenReusable(analyzer, str, out_tokens2);
         }
 
-        /**
+        /*
          * LUCENE-2207: wrong offset calculated by end() 
          */
         [Test]

Modified: lucene.net/trunk/test/contrib/Analyzers/Cz/TestCzechAnalyzer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Cz/TestCzechAnalyzer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Cz/TestCzechAnalyzer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Cz/TestCzechAnalyzer.cs Fri Oct  5 21:22:51 2012
@@ -32,7 +32,7 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Cz
 {
-    /**
+    /*
      * Test the CzechAnalyzer
      * 
      * CzechAnalyzer is like a StandardAnalyzer with a custom stopword list.

Modified: lucene.net/trunk/test/contrib/Analyzers/De/TestGermanStemFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/De/TestGermanStemFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/De/TestGermanStemFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/De/TestGermanStemFilter.cs Fri Oct  5 21:22:51 2012
@@ -30,7 +30,7 @@ using Version=Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.De
 {
-    /**
+    /*
      * Test the German stemmer. The stemming algorithm is known to work less 
      * than perfect, as it doesn't use any word lists with exceptions. We 
      * also check some of the cases where the algorithm is wrong.
@@ -96,7 +96,7 @@ namespace Lucene.Net.Analyzers.De
             CheckReuse(a, "Tischen", "tisch");
         }
 
-        /**
+        /*
          * subclass that acts just like whitespace analyzer for testing
          */
         private sealed class GermanSubclassAnalyzer : GermanAnalyzer

Modified: lucene.net/trunk/test/contrib/Analyzers/El/GreekAnalyzerTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/El/GreekAnalyzerTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/El/GreekAnalyzerTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/El/GreekAnalyzerTest.cs Fri Oct  5 21:22:51 2012
@@ -31,14 +31,14 @@ using Version=Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.El
 {
-/**
+/*
  * A unit test class for verifying the correct operation of the GreekAnalyzer.
  *
  */
     [TestFixture]
 public class GreekAnalyzerTest : BaseTokenStreamTestCase {
 
-	/**
+	/*
 	 * Test the analysis of various greek strings.
 	 *
 	 * @throws Exception in case an error occurs

Modified: lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianAnalyzer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianAnalyzer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianAnalyzer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianAnalyzer.cs Fri Oct  5 21:22:51 2012
@@ -30,20 +30,20 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Fa
 {
-/**
+/*
  * Test the Persian Analyzer
  * 
  */
 public class TestPersianAnalyzer : BaseTokenStreamTestCase {
 
-  /**
+  /*
    * This test fails with NPE when the stopwords file is missing in classpath
    */
   public void testResourcesAvailable() {
     new PersianAnalyzer(Version.LUCENE_CURRENT);
   }
 
-  /**
+  /*
    * This test shows how the combination of tokenization (breaking on zero-width
    * non-joiner), normalization (such as treating arabic YEH and farsi YEH the
    * same), and stopwords creates a light-stemming effect for verbs.
@@ -116,7 +116,7 @@ public class TestPersianAnalyzer : BaseT
     AssertAnalyzesTo(a, "بخورد", new String[] { "بخورد" });
   }
 
-  /**
+  /*
    * This test shows how the combination of tokenization and stopwords creates a
    * light-stemming effect for verbs.
    * 
@@ -192,7 +192,7 @@ public class TestPersianAnalyzer : BaseT
     AssertAnalyzesTo(a, "بخورد", new String[] { "بخورد" });
   }
 
-  /**
+  /*
    * This test shows how the combination of tokenization (breaking on zero-width
    * non-joiner or space) and stopwords creates a light-stemming effect for
    * nouns, removing the plural -ha.
@@ -203,7 +203,7 @@ public class TestPersianAnalyzer : BaseT
     AssertAnalyzesTo(a, "برگ‌ها", new String[] { "برگ" });
   }
 
-  /**
+  /*
    * Test showing that non-persian text is treated very much like SimpleAnalyzer
    * (lowercased, etc)
    */
@@ -212,7 +212,7 @@ public class TestPersianAnalyzer : BaseT
     AssertAnalyzesTo(a, "English test.", new String[] { "english", "test" });
   }
   
-  /**
+  /*
    * Basic test ensuring that reusableTokenStream works correctly.
    */
   public void testReusableTokenStream(){
@@ -221,7 +221,7 @@ public class TestPersianAnalyzer : BaseT
     AssertAnalyzesToReuse(a, "برگ‌ها", new String[] { "برگ" });
   }
   
-  /**
+  /*
    * Test that custom stopwords work, and are not case-sensitive.
    */
   public void testCustomStopwords(){

Modified: lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianNormalizationFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianNormalizationFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianNormalizationFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Fa/TestPersianNormalizationFilter.cs Fri Oct  5 21:22:51 2012
@@ -32,7 +32,7 @@ using NUnit.Framework;
 
 namespace Lucene.Net.Analyzers.Fa
 {
-    /**
+    /*
      * Test the Arabic Normalization Filter
      * 
      */

Modified: lucene.net/trunk/test/contrib/Analyzers/Fr/TestElision.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Fr/TestElision.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Fr/TestElision.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Fr/TestElision.cs Fri Oct  5 21:22:51 2012
@@ -35,7 +35,7 @@ using Version=Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Fr
 {
-    /**
+    /*
      * 
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/Fr/TestFrenchAnalyzer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Fr/TestFrenchAnalyzer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Fr/TestFrenchAnalyzer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Fr/TestFrenchAnalyzer.cs Fri Oct  5 21:22:51 2012
@@ -31,7 +31,7 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Fr
 {
-    /**
+    /*
      * Test case for FrenchAnalyzer.
      *
      * @version   $version$

Modified: lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/PatternAnalyzerTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/PatternAnalyzerTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/PatternAnalyzerTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/PatternAnalyzerTest.cs Fri Oct  5 21:22:51 2012
@@ -32,13 +32,13 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Miscellaneous
 {
-    /**
+    /*
      * Verifies the behavior of PatternAnalyzer.
      */
     [TestFixture]
     public class PatternAnalyzerTest : BaseTokenStreamTestCase
     {
-        /**
+        /*
          * Test PatternAnalyzer when it is configured with a non-word pattern.
          * Behavior can be similar to SimpleAnalyzer (depending upon options)
          */
@@ -63,7 +63,7 @@ namespace Lucene.Net.Analyzers.Miscellan
                                                                          });
         }
 
-        /**
+        /*
          * Test PatternAnalyzer when it is configured with a whitespace pattern.
          * Behavior can be similar to WhitespaceAnalyzer (depending upon options)
          */
@@ -89,7 +89,7 @@ namespace Lucene.Net.Analyzers.Miscellan
                                                                          });
         }
 
-        /**
+        /*
          * Test PatternAnalyzer when it is configured with a custom pattern. In this
          * case, text is tokenized on the comma ","
          */
@@ -114,7 +114,7 @@ namespace Lucene.Net.Analyzers.Miscellan
                                                                  });
         }
 
-        /**
+        /*
          * Test PatternAnalyzer against a large document.
          */
         [Test]
@@ -144,7 +144,7 @@ namespace Lucene.Net.Analyzers.Miscellan
                                               });
         }
 
-        /**
+        /*
          * Verify the analyzer analyzes to the expected contents. For PatternAnalyzer,
          * several methods are verified:
          * <ul>

Modified: lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAndSuffixAwareTokenFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAndSuffixAwareTokenFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAndSuffixAwareTokenFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAndSuffixAwareTokenFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAwareTokenFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAwareTokenFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAwareTokenFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Miscellaneous/TestPrefixAwareTokenFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenFilter.cs Fri Oct  5 21:22:51 2012
@@ -28,7 +28,7 @@ using NUnit.Framework;
 
 namespace Lucene.Net.Analyzers.NGram
 {
-    /**
+    /*
      * Tests {@link EdgeNGramTokenFilter} for correctness.
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenizer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenizer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenizer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/NGram/TestEdgeNGramTokenizer.cs Fri Oct  5 21:22:51 2012
@@ -27,7 +27,7 @@ using NUnit.Framework;
 
 namespace Lucene.Net.Analyzers.NGram
 {
-    /**
+    /*
      * Tests {@link EdgeNGramTokenizer} for correctness.
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -25,7 +25,7 @@ using NUnit.Framework;
 namespace Lucene.Net.Analyzers.NGram
 {
 
-    /**
+    /*
      * Tests {@link NGramTokenFilter} for correctness.
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenizer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenizer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenizer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/NGram/TestNGramTokenizer.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -24,7 +24,7 @@ using NUnit.Framework;
 namespace Lucene.Net.Analyzers.NGram
 {
 
-    /**
+    /*
      * Tests {@link NGramTokenizer} for correctness.
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/Nl/TestDutchStemmer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Nl/TestDutchStemmer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Nl/TestDutchStemmer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Nl/TestDutchStemmer.cs Fri Oct  5 21:22:51 2012
@@ -32,7 +32,7 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Nl
 {
-    /**
+    /*
      * Test the Dutch Stem Filter, which only modifies the term text.
      * 
      * The code states that it uses the snowball algorithm, but tests reveal some differences.
@@ -138,7 +138,7 @@ namespace Lucene.Net.Analyzers.Nl
             CheckOneTermReuse(a, "lichamelijkheden", "licham");
         }
 
-        /**
+        /*
          * subclass that acts just like whitespace analyzer for testing
          */
         private class DutchSubclassAnalyzer : DutchAnalyzer

Modified: lucene.net/trunk/test/contrib/Analyzers/Position/PositionFilterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Position/PositionFilterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Position/PositionFilterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Position/PositionFilterTest.cs Fri Oct  5 21:22:51 2012
@@ -163,7 +163,7 @@ namespace Lucene.Net.Analyzers.Position
             AssertTokenStreamContents(filter, TEST_TOKEN, TEST_TOKEN_POSITION_INCREMENTS);
         }
 
-        /** Tests ShingleFilter up to six shingles against six terms.
+        /* Tests ShingleFilter up to six shingles against six terms.
          *  Tests PositionFilter setting all but the first positionIncrement to zero.
          * @throws java.io.IOException @see Token#next(Token)
          */

Modified: lucene.net/trunk/test/contrib/Analyzers/Query/QueryAutoStopWordAnalyzerTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Query/QueryAutoStopWordAnalyzerTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Query/QueryAutoStopWordAnalyzerTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Query/QueryAutoStopWordAnalyzerTest.cs Fri Oct  5 21:22:51 2012
@@ -163,7 +163,7 @@ namespace Lucene.Net.Analyzers.Query
 
         }
 
-        /**
+        /*
          * subclass that acts just like whitespace analyzer for testing
          */
         private class QueryAutoStopWordSubclassAnalyzer : QueryAutoStopWordAnalyzer

Modified: lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianAnalyzer.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianAnalyzer.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianAnalyzer.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianAnalyzer.cs Fri Oct  5 21:22:51 2012
@@ -33,7 +33,7 @@ using Version=Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Analyzers.Ru
 {
-    /**
+    /*
      * Test case for RussianAnalyzer.
      */
     [TestFixture]

Modified: lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianStem.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianStem.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianStem.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Ru/TestRussianStem.cs Fri Oct  5 21:22:51 2012
@@ -36,7 +36,7 @@ namespace Lucene.Net.Analyzers.Ru
         private List<string> words = new List<string>();
         private List<string> stems = new List<string>();
 
-        /**
+        /*
          * @see TestCase#setUp()
          */
         public override void SetUp()

Modified: lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleAnalyzerWrapperTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleAnalyzerWrapperTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleAnalyzerWrapperTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleAnalyzerWrapperTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleFilterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleFilterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleFilterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Shingle/ShingleFilterTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Analyzers/Shingle/TestShingleMatrixFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Analyzers/Shingle/TestShingleMatrixFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Analyzers/Shingle/TestShingleMatrixFilter.cs (original)
+++ lucene.net/trunk/test/contrib/Analyzers/Shingle/TestShingleMatrixFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Core/Index/FieldEnumeratorTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Core/Index/FieldEnumeratorTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Core/Index/FieldEnumeratorTest.cs (original)
+++ lucene.net/trunk/test/contrib/Core/Index/FieldEnumeratorTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Core/Index/SegmentsGenCommitTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Core/Index/SegmentsGenCommitTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Core/Index/SegmentsGenCommitTest.cs (original)
+++ lucene.net/trunk/test/contrib/Core/Index/SegmentsGenCommitTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Core/Index/TermVectorEnumeratorTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Core/Index/TermVectorEnumeratorTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Core/Index/TermVectorEnumeratorTest.cs (original)
+++ lucene.net/trunk/test/contrib/Core/Index/TermVectorEnumeratorTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Core/Util/Cache/SegmentCacheTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Core/Util/Cache/SegmentCacheTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Core/Util/Cache/SegmentCacheTest.cs (original)
+++ lucene.net/trunk/test/contrib/Core/Util/Cache/SegmentCacheTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/AbstractTestCase.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/AbstractTestCase.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/AbstractTestCase.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/AbstractTestCase.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldPhraseListTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldPhraseListTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldPhraseListTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldPhraseListTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldQueryTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldQueryTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldQueryTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldQueryTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldTermStackTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldTermStackTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldTermStackTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/FieldTermStackTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/IndexTimeSynonymTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/IndexTimeSynonymTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/IndexTimeSynonymTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/IndexTimeSynonymTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/ScoreOrderFragmentsBuilderTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/ScoreOrderFragmentsBuilderTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/ScoreOrderFragmentsBuilderTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/ScoreOrderFragmentsBuilderTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragListBuilderTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragListBuilderTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragListBuilderTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragListBuilderTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragmentsBuilderTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragmentsBuilderTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragmentsBuilderTest.cs (original)
+++ lucene.net/trunk/test/contrib/FastVectorHighlighter/SimpleFragmentsBuilderTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Highlighter/HighlighterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Highlighter/HighlighterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Highlighter/HighlighterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Highlighter/HighlighterTest.cs Fri Oct  5 21:22:51 2012
@@ -40,7 +40,7 @@ using Token = Lucene.Net.Analysis.Token;
 
 namespace Lucene.Net.Search.Highlight.Test
 {
-    /**
+    /*
      * JUnit Test for Highlighter class.
      *
      */
@@ -75,7 +75,7 @@ namespace Lucene.Net.Search.Highlight.Te
             
         }
 
-        /**
+        /*
          * Constructor for HighlightExtractorTest.
          * 
          * @param arg0
@@ -147,7 +147,7 @@ namespace Lucene.Net.Search.Highlight.Te
                             "Query in a named field does not result in highlighting when that field isn't in the query");
         }
 
-        /**
+        /*
          * This method intended for use with <tt>testHighlightingWithDefaultField()</tt>
        * @throws InvalidTokenOffsetsException 
          */
@@ -1351,7 +1351,7 @@ namespace Lucene.Net.Search.Highlight.Te
             }
         }
 
-        /**
+        /*
          * Demonstrates creation of an XHTML compliant doc using new encoding facilities.
          * 
          * @throws Exception
@@ -1950,7 +1950,7 @@ public void testBigramAnalyzer() {
         }
     }
 
-    /**
+    /*
      * Expands a token stream with synonyms (TODO - make the synonyms analyzed by choice of analyzer)
      *
      */

Modified: lucene.net/trunk/test/contrib/Memory/MemoryIndexTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Memory/MemoryIndexTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Memory/MemoryIndexTest.cs (original)
+++ lucene.net/trunk/test/contrib/Memory/MemoryIndexTest.cs Fri Oct  5 21:22:51 2012
@@ -35,7 +35,7 @@ using Version = Lucene.Net.Util.Version;
 
 namespace Lucene.Net.Index.Memory.Test
 {
-    /**
+    /*
      * Verifies that Lucene MemoryIndex and RAMDirectory have the same behaviour,
      * returning the same results for queries on some randomish indexes.
      */
@@ -56,7 +56,7 @@ namespace Lucene.Net.Index.Memory.Test
             random = NewRandom();
         }
 
-        /**
+        /*
          * read a set of queries from a resource file
          */
 
@@ -79,7 +79,7 @@ namespace Lucene.Net.Index.Memory.Test
             }
         }
 
-        /**
+        /*
          * runs random tests, up to ITERATIONS times.
          */
         [Test]
@@ -89,7 +89,7 @@ namespace Lucene.Net.Index.Memory.Test
                 AssertAgainstRAMDirectory();
         }
 
-        /**
+        /*
          * Build a randomish document for both RAMDirectory and MemoryIndex,
          * and run all the queries against it.
          */
@@ -131,7 +131,7 @@ namespace Lucene.Net.Index.Memory.Test
             AssertAllQueries(memory, ramdir, analyzer);
         }
 
-        /**
+        /*
          * Run all queries against both the RAMDirectory and MemoryIndex, ensuring they are the same.
          */
 
@@ -149,7 +149,7 @@ namespace Lucene.Net.Index.Memory.Test
             }
         }
 
-        /**
+        /*
          * Return a random analyzer (Simple, Stop, Standard) to analyze the terms.
          */
 
@@ -166,7 +166,7 @@ namespace Lucene.Net.Index.Memory.Test
             }
         }
 
-        /**
+        /*
          * Some terms to be indexed, in addition to random words. 
          * These terms are commonly used in the queries. 
          */
@@ -181,7 +181,7 @@ namespace Lucene.Net.Index.Memory.Test
                                                       };
 
 
-        /**
+        /*
          * half of the time, returns a random term from TEST_TERMS.
          * the other half of the time, returns a random unicode string.
          */
@@ -200,7 +200,7 @@ namespace Lucene.Net.Index.Memory.Test
             }
         }
 
-        /**
+        /*
          * Return a random unicode term, like TestStressIndexing.
          */
 

Modified: lucene.net/trunk/test/contrib/Queries/BooleanFilterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/BooleanFilterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/BooleanFilterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/BooleanFilterTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Queries/BoostingQueryTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/BoostingQueryTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/BoostingQueryTest.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/BoostingQueryTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Queries/DuplicateFilterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/DuplicateFilterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/DuplicateFilterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/DuplicateFilterTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Queries/FuzzyLikeThisQueryTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/FuzzyLikeThisQueryTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/FuzzyLikeThisQueryTest.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/FuzzyLikeThisQueryTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Queries/Similar/TestMoreLikeThis.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/Similar/TestMoreLikeThis.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/Similar/TestMoreLikeThis.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/Similar/TestMoreLikeThis.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Queries/TermsFilterTest.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Queries/TermsFilterTest.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Queries/TermsFilterTest.cs (original)
+++ lucene.net/trunk/test/contrib/Queries/TermsFilterTest.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/contrib/Snowball/Analysis/Snowball/TestSnowball.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Snowball/Analysis/Snowball/TestSnowball.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Snowball/Analysis/Snowball/TestSnowball.cs (original)
+++ lucene.net/trunk/test/contrib/Snowball/Analysis/Snowball/TestSnowball.cs Fri Oct  5 21:22:51 2012
@@ -61,7 +61,7 @@ namespace Lucene.Net.Analysis.Snowball
                 new String[] { "she", "abhor", "him" });
         }
 
-        /**
+        /*
          * subclass that acts just like whitespace analyzer for testing
          */
         private class SnowballSubclassAnalyzer : SnowballAnalyzer

Modified: lucene.net/trunk/test/contrib/Spatial/CheckHits.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Spatial/CheckHits.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Spatial/CheckHits.cs (original)
+++ lucene.net/trunk/test/contrib/Spatial/CheckHits.cs Fri Oct  5 21:22:51 2012
@@ -33,7 +33,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
     /// </summary>
     public class CheckHits : LuceneTestCase
     {
-        /**
+        /*
 * Asserts that the explanation value for every document matching a
 * query corresponds with the true score.  Optionally does "deep" 
 * testing of the explanation details.
@@ -58,14 +58,14 @@ namespace Lucene.Net.Contrib.Spatial.Tes
 
         public class ExplanationAsserter : Collector
         {
-            /**
+            /*
  * Some explains methods calculate their values though a slightly
  * different  order of operations from the actual scoring method ...
  * this allows for a small amount of relative variation
  */
             public static float EXPLAIN_SCORE_TOLERANCE_DELTA = 0.001f;
 
-            /**
+            /*
              * In general we use a relative epsilon, but some tests do crazy things
              * like boost documents with 0, creating tiny tiny scores where the
              * relative difference is large but the absolute difference is tiny.
@@ -81,7 +81,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
             private Scorer scorer;
             private int @base = 0;
 
-            /** Constructs an instance which does shallow tests on the Explanation */
+            /* Constructs an instance which does shallow tests on the Explanation */
 
             public ExplanationAsserter(Query q, String defaultFieldName, IndexSearcher s)
                 : this(q, defaultFieldName, s, false)
@@ -131,7 +131,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
                 get { return true; }
             }
 
-            /** 
+            /* 
  * Assert that an explanation has the expected score, and optionally that its
  * sub-details max/sum/factor match to that score.
  *
@@ -246,7 +246,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
                 }
             }
 
-            /** returns a reasonable epsilon for comparing two floats,
+            /* returns a reasonable epsilon for comparing two floats,
    *  where minor differences are acceptable such as score vs. explain */
             public static float explainToleranceDelta(float f1, float f2)
             {

Modified: lucene.net/trunk/test/contrib/Spatial/PortedSolr3Test.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Spatial/PortedSolr3Test.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Spatial/PortedSolr3Test.cs (original)
+++ lucene.net/trunk/test/contrib/Spatial/PortedSolr3Test.cs Fri Oct  5 21:22:51 2012
@@ -31,7 +31,7 @@ using Spatial4n.Core.Shapes;
 
 namespace Lucene.Net.Contrib.Spatial.Test
 {
-   /**
+   /*
 	* Based off of Solr 3's SpatialFilterTest.
 	*/
     public class PortedSolr3Test : StrategyTestCase

Modified: lucene.net/trunk/test/contrib/Spatial/Prefix/TestRecursivePrefixTreeStrategy.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Spatial/Prefix/TestRecursivePrefixTreeStrategy.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Spatial/Prefix/TestRecursivePrefixTreeStrategy.cs (original)
+++ lucene.net/trunk/test/contrib/Spatial/Prefix/TestRecursivePrefixTreeStrategy.cs Fri Oct  5 21:22:51 2012
@@ -201,7 +201,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
             }
         }
 
-        /** NGeohash round-trip for given precision. */
+        /* NGeohash round-trip for given precision. */
 
         private Point alignGeohash(Point p)
         {

Modified: lucene.net/trunk/test/contrib/Spatial/StrategyTestCase.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/contrib/Spatial/StrategyTestCase.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/contrib/Spatial/StrategyTestCase.cs (original)
+++ lucene.net/trunk/test/contrib/Spatial/StrategyTestCase.cs Fri Oct  5 21:22:51 2012
@@ -110,7 +110,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
             return documents;
         }
 
-        /** Subclasses may override to transform or remove a shape for indexing */
+        /* Subclasses may override to transform or remove a shape for indexing */
 
         protected virtual Shape convertShapeFromGetDocuments(Shape shape)
         {
@@ -232,7 +232,7 @@ namespace Lucene.Net.Contrib.Spatial.Tes
             return doc;
         }
 
-        /** scores[] are in docId order */
+        /* scores[] are in docId order */
 
         protected void checkValueSource(ValueSource vs, float[] scores, float delta)
         {

Modified: lucene.net/trunk/test/core/Document/TestBinaryDocument.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Document/TestBinaryDocument.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Document/TestBinaryDocument.cs (original)
+++ lucene.net/trunk/test/core/Document/TestBinaryDocument.cs Fri Oct  5 21:22:51 2012
@@ -52,29 +52,29 @@ namespace Lucene.Net.Documents
 			
 			doc.Add(stringFldStored);
 			
-			/** test for field count */
+			/* test for field count */
 			Assert.AreEqual(2, doc.fields_ForNUnit.Count);
 			
-			/** add the doc to a ram index */
+			/* add the doc to a ram index */
 			MockRAMDirectory dir = new MockRAMDirectory();
 			IndexWriter writer = new IndexWriter(dir, new StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_CURRENT), true, IndexWriter.MaxFieldLength.LIMITED);
 			writer.AddDocument(doc);
 			writer.Close();
 			
-			/** open a reader and fetch the document */
+			/* open a reader and fetch the document */
 			IndexReader reader = IndexReader.Open(dir, false);
 			Document docFromReader = reader.Document(0);
 			Assert.IsTrue(docFromReader != null);
 			
-			/** fetch the binary stored field and compare it's content with the original one */
+			/* fetch the binary stored field and compare it's content with the original one */
 			System.String binaryFldStoredTest = new System.String(System.Text.UTF8Encoding.UTF8.GetChars(docFromReader.GetBinaryValue("binaryStored")));
 			Assert.IsTrue(binaryFldStoredTest.Equals(binaryValStored));
 			
-			/** fetch the string field and compare it's content with the original one */
+			/* fetch the string field and compare it's content with the original one */
 			System.String stringFldStoredTest = docFromReader.Get("stringStored");
 			Assert.IsTrue(stringFldStoredTest.Equals(binaryValStored));
 			
-			/** delete the document from index */
+			/* delete the document from index */
 			reader.DeleteDocument(0);
 			Assert.AreEqual(0, reader.NumDocs());
 			
@@ -93,18 +93,18 @@ namespace Lucene.Net.Documents
 			doc.Add(binaryFldCompressed);
 			doc.Add(stringFldCompressed);
 			
-			/** add the doc to a ram index */
+			/* add the doc to a ram index */
 			MockRAMDirectory dir = new MockRAMDirectory();
 			IndexWriter writer = new IndexWriter(dir, new StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_CURRENT), true, IndexWriter.MaxFieldLength.LIMITED);
 			writer.AddDocument(doc);
 			writer.Close();
 			
-			/** open a reader and fetch the document */
+			/* open a reader and fetch the document */
 			IndexReader reader = IndexReader.Open(dir, false);
 			Document docFromReader = reader.Document(0);
 			Assert.IsTrue(docFromReader != null);
 			
-			/** fetch the binary compressed field and compare it's content with the original one */
+			/* fetch the binary compressed field and compare it's content with the original one */
 			System.String binaryFldCompressedTest = new System.String(System.Text.UTF8Encoding.UTF8.GetChars(CompressionTools.Decompress(docFromReader.GetBinaryValue("binaryCompressed"))));
 			Assert.IsTrue(binaryFldCompressedTest.Equals(binaryValCompressed));
 			Assert.IsTrue(CompressionTools.DecompressString(docFromReader.GetBinaryValue("stringCompressed")).Equals(binaryValCompressed));

Modified: lucene.net/trunk/test/core/Index/TestIsCurrent.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Index/TestIsCurrent.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Index/TestIsCurrent.cs (original)
+++ lucene.net/trunk/test/core/Index/TestIsCurrent.cs Fri Oct  5 21:22:51 2012
@@ -61,7 +61,7 @@ namespace Lucene.Net.Index
             directory.Close();
         }
 
-        /**
+        /*
          * Failing testcase showing the trouble
          * 
          * @throws IOException
@@ -89,7 +89,7 @@ namespace Lucene.Net.Index
             reader.Close();
         }
 
-        /**
+        /*
          * Testcase for example to show that writer.deleteAll() is working as expected
          * 
          * @throws IOException

Modified: lucene.net/trunk/test/core/Index/TestStressIndexing2.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Index/TestStressIndexing2.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Index/TestStressIndexing2.cs (original)
+++ lucene.net/trunk/test/core/Index/TestStressIndexing2.cs Fri Oct  5 21:22:51 2012
@@ -164,7 +164,7 @@ namespace Lucene.Net.Index
 			IndexWriter w = new MockIndexWriter(this, dir, new WhitespaceAnalyzer(), true, IndexWriter.MaxFieldLength.UNLIMITED);
 			w.UseCompoundFile = false;
 			
-			/***
+			/*
 			w.setMaxMergeDocs(Integer.MAX_VALUE);
 			w.setMaxFieldLength(10000);
 			w.setRAMBufferSizeMB(1);

Modified: lucene.net/trunk/test/core/Search/Spans/TestSpansAdvanced.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/Spans/TestSpansAdvanced.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/Spans/TestSpansAdvanced.cs (original)
+++ lucene.net/trunk/test/core/Search/Spans/TestSpansAdvanced.cs Fri Oct  5 21:22:51 2012
@@ -147,7 +147,7 @@ namespace Lucene.Net.Search.Spans
 			// hits normalizes and throws things off if one score is greater than 1.0
 			TopDocs topdocs = s.Search(query, null, 10000);
 			
-			/*****
+			/***
 			// display the hits
 			System.out.println(hits.length() + " hits for search: \"" + description + '\"');
 			for (int i = 0; i < hits.length(); i++) {

Modified: lucene.net/trunk/test/core/Search/TestBooleanOr.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/TestBooleanOr.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/TestBooleanOr.cs (original)
+++ lucene.net/trunk/test/core/Search/TestBooleanOr.cs Fri Oct  5 21:22:51 2012
@@ -59,7 +59,7 @@ namespace Lucene.Net.Search
 			Assert.AreEqual(1, Search(c2));
 		}
 		
-		/// <summary> <code>T:files T:deleting C:production C:optimize </code>
+		/// <summary> <c>T:files T:deleting C:production C:optimize </c>
 		/// it works.
 		/// 
 		/// </summary>
@@ -75,7 +75,7 @@ namespace Lucene.Net.Search
 			Assert.AreEqual(1, Search(q));
 		}
 		
-		/// <summary> <code>(T:files T:deleting) (+C:production +C:optimize)</code>
+		/// <summary> <c>(T:files T:deleting) (+C:production +C:optimize)</c>
 		/// it works.
 		/// 
 		/// </summary>
@@ -95,7 +95,7 @@ namespace Lucene.Net.Search
 			Assert.AreEqual(1, Search(q2));
 		}
 		
-		/// <summary> <code>(T:files T:deleting) +(C:production C:optimize)</code>
+		/// <summary> <c>(T:files T:deleting) +(C:production C:optimize)</c>
 		/// not working. results NO HIT.
 		/// 
 		/// </summary>
@@ -115,7 +115,7 @@ namespace Lucene.Net.Search
 			Assert.AreEqual(1, Search(q2));
 		}
 		
-		/// <summary> <code>(T:files T:deleting) (C:production C:optimize)</code>
+		/// <summary> <c>(T:files T:deleting) (C:production C:optimize)</c>
 		/// not working. results NO HIT.
 		/// 
 		/// </summary>

Modified: lucene.net/trunk/test/core/Search/TestCachingSpanFilter.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/TestCachingSpanFilter.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/TestCachingSpanFilter.cs (original)
+++ lucene.net/trunk/test/core/Search/TestCachingSpanFilter.cs Fri Oct  5 21:22:51 2012
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.

Modified: lucene.net/trunk/test/core/Search/TestMultiThreadTermVectors.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/TestMultiThreadTermVectors.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/TestMultiThreadTermVectors.cs (original)
+++ lucene.net/trunk/test/core/Search/TestMultiThreadTermVectors.cs Fri Oct  5 21:22:51 2012
@@ -76,7 +76,7 @@ namespace Lucene.Net.Search
 				{
 					try
 					{
-						/** close the opened reader */
+						/* close the opened reader */
 						reader.Close();
 					}
 					catch (System.IO.IOException ioe)
@@ -98,7 +98,7 @@ namespace Lucene.Net.Search
 			}
 			
 			
-			/** run until all threads finished */
+			/* run until all threads finished */
 			int threadsAlive = mtr.Length;
 			while (threadsAlive > 0)
 			{

Modified: lucene.net/trunk/test/core/Search/TestThreadSafe.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/TestThreadSafe.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/TestThreadSafe.cs (original)
+++ lucene.net/trunk/test/core/Search/TestThreadSafe.cs Fri Oct  5 21:22:51 2012
@@ -108,7 +108,7 @@ namespace Lucene.Net.Search
 				{
 					for (int i = 0; i < iter; i++)
 					{
-						/*** future
+						/* future
 						// pick a random index reader... a shared one, or create your own
 						IndexReader ir;
 						***/

Modified: lucene.net/trunk/test/core/Search/TestWildcard.cs
URL: http://svn.apache.org/viewvc/lucene.net/trunk/test/core/Search/TestWildcard.cs?rev=1394820&r1=1394819&r2=1394820&view=diff
==============================================================================
--- lucene.net/trunk/test/core/Search/TestWildcard.cs (original)
+++ lucene.net/trunk/test/core/Search/TestWildcard.cs Fri Oct  5 21:22:51 2012
@@ -190,7 +190,7 @@ namespace Lucene.Net.Search
 		}
 		
 
-        /**
+        /*
          * LUCENE-2620
          */
         [Test]