Subversion Repository Public Repository

litesoft

Diff Revisions 893 vs 897 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/temporal/TimestampHMSM.java

Diff revisions: vs.
  @@ -37,7 +37,7 @@
37 37
38 38 public static TimestampHMSM fromWallTime( int pYear, int pMonth, int pDay, int pHour, int pMin, int pSec, int pMilliSec )
39 39 {
40 - return new TimestampHMSM( UtilDateAdaptor.currentWall( pYear, pMonth, pDay, pHour, pMin, pSec, pMilliSec ) );
40 + return new TimestampHMSM( UtilDateAdaptor.wall( pYear, pMonth, pDay, pHour, pMin, pSec, pMilliSec ) );
41 41 }
42 42
43 43 public static TimestampHMSM fromISO8601( int pYear, int pMonth, int pDay, int pHour, int pMin, int pSec, String pFraction, boolean pZulu,