diff -r 5389e6fbb3bc -r 0eaf09920532 compiler/PPCMethod.st --- 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 " + 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 " + buffer := WriteStream on: ''. + indentation := 1. + variables := OrderedCollection new. + canInline := false ! ! !PPCMethod class methodsFor:'documentation'!