- Reverted to revision 1.2 ... this matches the comments in the code anyway :).

Should fix bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14485


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149909 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2003-01-04 16:41:36 +00:00
parent 0b346b0639
commit 2d2a191b87
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class DateField {
if (s.length() < DATE_LEN) {
StringBuffer sb = new StringBuffer(s);
while (sb.length() < DATE_LEN)
sb.insert(0, ' ');
sb.insert(0, 0);
s = sb.toString();
}