[Pkg] Monticello Public: Monticello.impl-kph.609.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Fri Dec 12 23:23:36 UTC 2008


A new version of Monticello.impl was added to project Monticello Public:
http://www.squeaksource.com/mc/Monticello.impl-kph.609.mcz

==================== Summary ====================

Name: Monticello.impl-kph.609
Author: kph
Time: 12 December 2008, 11:23:22 pm
UUID: 6b6d930e-6893-4771-a81c-b81b4556b2d0
Ancestors: Monticello.impl-kph.607

fix typo

=============== Diff against Monticello.impl-kph.607 ===============

Item was changed:
  ----- Method: MCPackageLoader2>>basicLoad (in category 'private') -----
  basicLoad
  
  	| postloads postunloads |
  
  	editor := SystemEditor new.
  	postloads := OrderedCollection new.
  	postunloads := OrderedCollection new.
  
  	additions do: [:defn |
+ 		(defn edLoadFor: self into: editor)
- 		(defn edLoadOverFor: self into: editor)
  			ifTrue: [postloads add: defn]]
  		displayingProgress: 'Assembling Changes...'.
  	removals do: [:defn |
  		(defn edUnload: editor)
  			ifTrue: [postunloads add: defn]]
  		displayingProgress: 'Assembling Removals...'.
  
  	"the business"
  	editor commitWithProgress.
  
  	postloads do: [:ea | ea edPostloadFor: self ] displayingProgress: 'Running post-load scripts...'.
  	postunloads do: [ :ea |  ea edPostunload] displayingProgress: 'Running post-unload scripts...'.!



More information about the Packages mailing list