[squeak-dev] The Trunk: SystemReporter-laza.4.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 27 21:32:33 UTC 2011


Alexander Lazarević uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-laza.4.mcz

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

Name: SystemReporter-laza.4
Author: laza
Time: 27 January 2011, 10:31:54.565 pm
UUID: 3899f345-0922-8043-9278-78cb29b05496
Ancestors: SystemReporter-laza.3

Fix output of 'none'

=============== Diff against SystemReporter-laza.3 ===============

Item was changed:
  ----- Method: SystemReporter>>reportImageParameters: (in category 'reporting') -----
  reportImageParameters: aStream
  	| id value |
  	self header: 'Image Commandline Parameters' on: aStream.
  	id := 2.
  	[value := (SmalltalkImage current getSystemAttribute: id).
  	value = nil or: [id > 1000]] whileFalse: [
  		aStream
  			nextPut: $#;
  			nextPutAll: (id - 1) printString;
  			tab;
  			nextPutAll: value; cr.
  		id := id + 1
  	].
+ 	id = 2 ifTrue: [aStream nextPutAll: 'none'; cr]
- 	id = 3 ifTrue: [aStream nextPutAll: 'none'; cr]
  !




More information about the Squeak-dev mailing list