class: Block
authorStefan Vogel <sv@exept.de>
Sat, 24 Nov 2012 13:51:52 +0100
changeset 14530 df7569f2414c
parent 14529 93eb58ca1886
child 14531 67324066e6bc
class: Block comment/format in: #deepCopyUsing:postCopySelector:
Block.st
--- a/Block.st	Fri Nov 23 18:44:05 2012 +0100
+++ b/Block.st	Sat Nov 24 13:51:52 2012 +0100
@@ -779,8 +779,6 @@
 !Block methodsFor:'copying'!
 
 deepCopyUsing:aDictionary postCopySelector:postCopySelector
-    "raise an error - deepCopy is not allowed for blocks"
-
     |copyOfHome copyOfMe|
 
     home isNil ifTrue:[
@@ -793,7 +791,6 @@
     ^ copyOfMe
 
     "Created: / 31-03-1998 / 15:46:17 / cg"
-    "Modified: / 20-10-2006 / 14:53:34 / User"
     "Modified: / 21-07-2011 / 13:30:12 / cg"
 ! !
 
@@ -3031,11 +3028,11 @@
 !Block class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.188 2012-05-22 09:58:15 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.189 2012-11-24 12:51:52 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.188 2012-05-22 09:58:15 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Block.st,v 1.189 2012-11-24 12:51:52 stefan Exp $'
 ! !
 
 Block initialize!