The Trunk: Monticello-bf.356.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-bf.356.mcz

commits-2
Andreas Raab uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.356.mcz

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

Name: Monticello-bf.356
Author: bf
Time: 28 March 2011, 7:35:28.106 pm
UUID: 85036f4e-b396-43bb-b941-2668ee99f06e
Ancestors: Monticello-ar.355

- two boolean logic fixes
- this version is for the squeaksource server running on source.squeak.org, should be merged into the latest trunk

=============== Diff against Monticello-ar.355 ===============

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']]!