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 2006/06/17 15:40:39 UTC

svn commit: r415024 - /incubator/lucene.net/trunk/C#/src/Lucene.Net/Document/DateField.cs

Author: aroush
Date: Sat Jun 17 06:40:38 2006
New Revision: 415024

URL: http://svn.apache.org/viewvc?rev=415024&view=rev
Log:
Lucene.Net 1.9 Build 005

Modified:
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Document/DateField.cs

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Document/DateField.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Document/DateField.cs?rev=415024&r1=415023&r2=415024&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Document/DateField.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Document/DateField.cs Sat Jun 17 06:40:38 2006
@@ -49,7 +49,7 @@
 		}
 		
 		// make date strings long enough to last a millenium
-		private static int DATE_LEN = System.Convert.ToString(
+		private static int DATE_LEN = SupportClass.Number.ToString(
             1000L * 365 * 24 * 60 * 60 * 1000, 16).Length;
 		
 		public static System.String MIN_DATE_STRING()