Skip to content

Commit

Permalink
Composed image format by default in Interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
PalumboN committed Feb 24, 2022
1 parent 04c5051 commit 45fd8df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smalltalksrc/VMMaker/StackInterpreter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -649,15 +649,15 @@ StackInterpreter class >> imageReaderClass [

^Smalltalk at: (InitializationOptions
at: #ImageReader
ifAbsent: [ #SpurImageReader ])
ifAbsent: [ #ComposedImageReader ])
]

{ #category : #accessing }
StackInterpreter class >> imageWriterClass [

^Smalltalk at: (InitializationOptions
at: #ImageWriter
ifAbsent: [ #SpurImageWriter ])
ifAbsent: [ #ComposedImageWriter ])
]

{ #category : #translation }
Expand Down

0 comments on commit 45fd8df

Please sign in to comment.