Timestamp.st
changeset 18451 b5c5d8653dc8
parent 18449 48c31fe80359
child 18455 cba486c3a61a
--- a/Timestamp.st	Sat Jun 06 13:59:56 2015 +0200
+++ b/Timestamp.st	Sat Jun 06 14:00:09 2015 +0200
@@ -975,7 +975,10 @@
         day := (monthAndDay at:2).  
     ].
     
-    ^ (self year:year month:month day:day hour:(hour ? 0) minute:(minute ? 0) second:(second ? 0) millisecond:millisecond) + utcOffset
+    ^ (self 
+        year:year month:month day:day 
+        hour:(hour ? 0) minute:(minute ? 0) second:(second ? 0) millisecond:millisecond) 
+            + utcOffset
 
     "
      Timestamp readFrom:'20-2-1995 13:11:06' format:'%day-%month-%year %h:%m:%s' language:nil onError:[self halt]
@@ -3971,11 +3974,11 @@
 !Timestamp class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.218 2015-06-06 11:42:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.219 2015-06-06 12:00:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.218 2015-06-06 11:42:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Timestamp.st,v 1.219 2015-06-06 12:00:09 cg Exp $'
 ! !