compiler/PPCCodeBlock.st
changeset 494 5cdfa83d6027
parent 481 34ee0d3c72e7
child 503 ff58cd9f1f3c
--- a/compiler/PPCCodeBlock.st	Wed Jun 17 17:10:54 2015 +0100
+++ b/compiler/PPCCodeBlock.st	Thu Jun 18 06:07:40 2015 +0100
@@ -126,15 +126,12 @@
 initialize
     "Invoked when a new instance is created."
 
-    "/ please change as required (and remove this comment)
     buffer := String new writeStream.
     indentation := 1.
-    temporaries := OrderedCollection new.          
-
-
-    "/ super initialize.   -- commented since inherited method does nothing
+    temporaries := OrderedCollection new.
 
     "Modified: / 01-06-2015 / 20:57:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 18-06-2015 / 06:04:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPCCodeBlock methodsFor:'printing and storing'!