[Pkg] The Trunk: System-nice.434.mcz

commits at source.squeak.org commits at source.squeak.org
Fri May 6 12:50:24 UTC 2011


Nicolas Cellier uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-nice.434.mcz

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

Name: System-nice.434
Author: nice
Time: 6 May 2011, 2:49:49.257 pm
UUID: 2822d416-1676-4e64-ab92-ae7ee0909412
Ancestors: System-cmm.433

let #aboutThisSystem use SystemReporter

=============== Diff against System-cmm.433 ===============

Item was changed:
  ----- Method: SmalltalkImage>>aboutThisSystem (in category 'sources, changes log') -----
  aboutThisSystem 
  	"Identify software version"
  
+ 	^self globals
+ 		at: #SystemReporter
+ 		ifPresent: [:sys | sys open]
+ 		ifAbsent: [self inform: self systemInformationString withCRs]!
- 	^ self inform: self systemInformationString withCRs.!

Item was changed:
  ----- Method: SmalltalkImage>>endianness (in category 'system attributes') -----
  endianness
+ 	^EndianCache ifNil: [EndianCache := self calcEndianness]!
- 
- 	EndianCache ifNil: [EndianCache := self calcEndianness].
- 	^ EndianCache.
- !



More information about the Packages mailing list