there's another issue in this method. If WorldState is not present, no launcher is called. It should be: (ws := Smalltalk at: #WorldState ifAbsent: [ nil ]) ifNotNil: [ launchers do: [:launcher | ws addDeferredUIMessage: [launcher startUp]] ] ifNil: [ launchers do: [:launcher | launcher startUp]]. -- Pavel On Tue, Jun 15, 2010 at 10:21 AM, Pavel Krivanek <pavel.krivanek@gmail.com> wrote:
Hi,
I'm synchronizing changes of the PharoKernel with Pharo 1.2 and I see that in the method AutoStart class>>startUp: the temp variable startupParameters is not initialized. Lukas deleted the line
startupParameters := AbstractLauncher extractParameters.
it should placed back as:
startupParameters := SmalltalkImage current extractParameters.
Cheers, -- Pavel