Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Jul 16, 2019
1 parent f153b7f commit 7ea3074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shift-ClassInstaller/ShiftClassInstaller.class.st
Expand Up @@ -76,7 +76,7 @@ ShiftClassInstaller >> copyClassSlotsFromExistingClass [
ShiftClassInstaller >> copyObject: oldObject to: newClass [
| newObject hiddenSlots |

(newObject := (newClass isVariable) and: [oldClass isVariable])
newObject := (newClass isVariable and: [oldClass isVariable])
ifTrue: [ newClass basicNew: oldObject size ]
ifFalse: [ newClass basicNew ].

Expand Down

0 comments on commit 7ea3074

Please sign in to comment.