#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Thu, 19 Jan 2017 17:06:56 +0100
changeset 21264 8a43f4a520e3
parent 21263 402b77c345ec
child 21265 e44b6104a678
child 21291 ee0044f48b5a
#REFACTORING by stefan class: Timestamp changed: #initialize Remove obsolete AbsoluteTime alias as promised since years
Timestamp.st
--- a/Timestamp.st	Thu Jan 19 17:00:59 2017 +0100
+++ b/Timestamp.st	Thu Jan 19 17:06:56 2017 +0100
@@ -105,16 +105,12 @@
 !Timestamp class methodsFor:'initialization'!
 
 initialize
-
-    "/ soon no longer;
-    "/ will be changed soon.
-    "/ if you need it for backward compatibility, define it in your smalltalk.rc
-    AbsoluteTime := self.       "backward compatibility"
-
     MinOSTime := OperatingSystem epochStartOSTime.
     MaxOSTime := OperatingSystem epochEndOSTime.
 
     Epoch := UtcTimestamp basicNew setSeconds:0.
+
+    "Modified: / 19-01-2017 / 17:01:59 / stefan"
 ! !
 
 !Timestamp class methodsFor:'instance creation'!
@@ -469,6 +465,7 @@
     "
 ! !
 
+
 !Timestamp class methodsFor:'private'!
 
 basicReadFrom:aStream
@@ -1727,6 +1724,7 @@
     "
 ! !
 
+
 !Timestamp methodsFor:'accessing'!
 
 day
@@ -3094,6 +3092,8 @@
     "
 ! !
 
+
+
 !Timestamp methodsFor:'testing'!
 
 isLocalTimestamp