[Pkg] The Trunk: Monticello-bf.448.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Mar 29 09:35:37 UTC 2011


Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.448.mcz

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

Name: Monticello-bf.448
Author: bf
Time: 29 March 2011, 11:35:26.157 am
UUID: c701ab35-206d-49ee-bf3a-410c71af9b87
Ancestors: Monticello-cmm.447, Monticello-bf.356

- two boolean logic fixes (needed by squeaksource)

=============== Diff against Monticello-cmm.447 ===============

Item was changed:
  ----- Method: MCCacheRepository>>basicStoreVersion: (in category 'as yet unclassified') -----
  basicStoreVersion: aVersion
+ 	(aVersion isCacheable not or: [self allFileNames includes: aVersion fileName])
- 	(aVersion isCacheable and: [self allFileNames includes: aVersion fileName])
  		ifFalse: [super basicStoreVersion: aVersion]
  !

Item was changed:
  ----- Method: MCMethodDefinition>>fullClassName (in category 'printing') -----
  fullClassName
  	"Using #class selector for classes for backwards compatibility"
  
  	^ self classIsMeta
  		ifFalse: [self className]
  		ifTrue: [
+ 			(self actualClass notNil and: [ self actualClass isTrait ])
- 			(self actualClass isNil or: [ self actualClass isTrait ])
  				ifFalse: [self className, ' class']
  				ifTrue: [self className, ' classSide']]!



More information about the Packages mailing list