compiler/PPCMethod.st
changeset 414 0eaf09920532
parent 399 b5b7a6db033b
child 422 116d2b2af905
--- a/compiler/PPCMethod.st	Wed Nov 05 21:40:01 2014 +0000
+++ b/compiler/PPCMethod.st	Wed Nov 05 23:05:19 2014 +0000
@@ -29,9 +29,7 @@
 !
 
 addVariable: name
-    (variables includes: name) ifFalse:[ variables add: name ].
-
-    "Modified: / 30-10-2014 / 23:00:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+	variables add: name.
 !
 
 allowInline
@@ -111,12 +109,10 @@
 !PPCMethod methodsFor:'initialization'!
 
 initialize
-        buffer := WriteStream on: ''.
-        indentation := 1.
-        variables := OrderedCollection new.
-        canInline := false
-
-    "Modified: / 30-10-2014 / 22:59:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+	buffer := WriteStream on: ''.
+	indentation := 1.
+	variables := OrderedCollection new.
+	canInline := false
 ! !
 
 !PPCMethod class methodsFor:'documentation'!