The Trunk: SystemReporter-laza.4.mcz

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

The Trunk: SystemReporter-laza.4.mcz

commits-2
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]
  !