Subversion Repository Public Repository

litesoft

Diff Revisions 830 vs 858 for /trunk/Java/KeyHole/src/org/litesoft/aokeyhole/persist/lines/FileLinesPersister.java

Diff revisions: vs.
  @@ -5,7 +5,7 @@
5 5 import java.text.*;
6 6 import java.util.*;
7 7
8 - import org.litesoft.util.*;
8 + import org.litesoft.core.typeutils.*;
9 9
10 10 public class FileLinesPersister implements LinesPersister
11 11 {
  @@ -108,7 +108,7 @@
108 108 {
109 109 return System.getProperty( TIMESTAMP_PREVIOUS ) == null ? //
110 110 "" : //
111 - "." + new SimpleDateFormat( "yyyyMMddHHmmss" ).format( Utils.getCurrentTimestamp() );
111 + "." + new SimpleDateFormat( "yyyyMMddHHmmss" ).format( Timestamps.now() );
112 112 }
113 113
114 114 private void writeLines( File pFile, String[] pLines )