Browse Source

Fix double spaces

Benjamin Van Ryseghem 11 years ago
parent
commit
6fe7e524c0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      js/Helios-Helpers.js
  2. 1 1
      st/Helios-Helpers.st

+ 1 - 1
js/Helios-Helpers.js

@@ -457,7 +457,7 @@ $1=_st(headerSize).__plus(firstInstVarSize);
 return $1;
 }, function($ctx1) {$ctx1.fill(self,"computeIndexForObject",{instVars:instVars,headerSize:headerSize,firstInstVarSize:firstInstVarSize},smalltalk.HLInitializeGenerator)})},
 args: [],
-source: "computeIndexForObject\x0a\x09| instVars headerSize firstInstVarSize |\x0a\x09\x0a\x09\x2232 is the size of the `initiliaze super initialize` part\x22\x0a\x09headerSize := 32.\x0a\x09instVars := output targetClass instanceVariableNames.\x0a\x09firstInstVarSize := instVars sorted\x0a\x09\x09ifEmpty: [ 0 ]\x0a\x09\x09ifNotEmpty:[ instVars first size  + 4 ].\x0a\x09^ headerSize + firstInstVarSize",
+source: "computeIndexForObject\x0a\x09| instVars headerSize firstInstVarSize |\x0a\x09\x0a\x09\x2232 is the size of the `initiliaze super initialize` part\x22\x0a\x09headerSize := 32.\x0a\x09instVars := output targetClass instanceVariableNames.\x0a\x09firstInstVarSize := instVars sorted\x0a\x09\x09ifEmpty: [ 0 ]\x0a\x09\x09ifNotEmpty:[ instVars first size + 4 ].\x0a\x09^ headerSize + firstInstVarSize",
 messageSends: ["instanceVariableNames", "targetClass", "ifEmpty:ifNotEmpty:", "sorted", "+", "size", "first"],
 referencedClasses: []
 }),

+ 1 - 1
st/Helios-Helpers.st

@@ -205,7 +205,7 @@ computeIndexForObject
 	instVars := output targetClass instanceVariableNames.
 	firstInstVarSize := instVars sorted
 		ifEmpty: [ 0 ]
-		ifNotEmpty:[ instVars first size  + 4 ].
+		ifNotEmpty:[ instVars first size + 4 ].
 	^ headerSize + firstInstVarSize
 !