mirror of https://github.com/apache/lucene.git
- 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:
parent
0b346b0639
commit
2d2a191b87
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue