From cbe5047e62f7e2989dde1ffd3cd0c7bf8a9065b3 Mon Sep 17 00:00:00 2001 From: Bernhard Messer Date: Thu, 30 Dec 2004 12:06:09 +0000 Subject: [PATCH] use the new DateTools.timeToString instead of the deprecated DateTime class. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150722 13f79535-47bb-0310-9956-ffa450edef68 --- src/demo/org/apache/lucene/demo/HTMLDocument.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/org/apache/lucene/demo/HTMLDocument.java b/src/demo/org/apache/lucene/demo/HTMLDocument.java index 72ee49778ee..7e9145bd5fc 100644 --- a/src/demo/org/apache/lucene/demo/HTMLDocument.java +++ b/src/demo/org/apache/lucene/demo/HTMLDocument.java @@ -32,7 +32,7 @@ public class HTMLDocument { // separate the path from the date. return f.getPath().replace(dirSep, '\u0000') + "\u0000" + - DateField.timeToString(f.lastModified()); + DateTools.timeToString(f.lastModified(), DateTools.Resolution.SECOND); } public static String uid2url(String uid) {