core/RGStampParser.st
changeset 10 1fa4cd506c87
parent 9 d64df1abdf2a
child 15 20d24474543f
--- a/core/RGStampParser.st	Fri Dec 18 12:22:51 2020 +0000
+++ b/core/RGStampParser.st	Wed Dec 23 08:46:20 2020 +0000
@@ -129,11 +129,11 @@
 timeForStamp: stamp
 
     ^ stamp
-        ifNil: [ 	DateAndTime new]
+        ifNil: [ Timestamp epoch ]
         ifNotNil: [ 
             | substrings |
             substrings := stamp substrings.
-            ([(DateAndTime fromString: (' ' join: substrings allButFirst ))] on: Exception do: [DateAndTime epoch]) ]. 
+            ([(DateAndTime fromString: (' ' join: substrings allButFirst ))] on: Exception do: [Timestamp epoch]) ]. 
     
 ! !