[squeak-dev] The Trunk: Network-ul.117.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 4 01:13:24 UTC 2011


Levente Uzonyi uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ul.117.mcz

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

Name: Network-ul.117
Author: ul
Time: 3 August 2011, 1:50:30.059 am
UUID: ab499e21-d9a7-3c4a-9d4b-ecc079123dc0
Ancestors: Network-cmm.116

Removed unnecessary blocks.

=============== Diff against Network-cmm.116 ===============

Item was changed:
  ----- Method: ServerDirectory class>>removeServerNamed:ifAbsent: (in category 'available servers') -----
  removeServerNamed: nameString ifAbsent: aBlock
+ 
+ 	self servers removeKey: nameString ifAbsent: aBlock!
- 	self servers removeKey: nameString ifAbsent: [aBlock value]!

Item was changed:
  ----- Method: ServerDirectory class>>serverNamed:ifAbsent: (in category 'available servers') -----
  serverNamed: nameString ifAbsent: aBlock
+ 
+ 	^self servers at: nameString asString ifAbsent: aBlock!
- 	^self servers at: nameString asString ifAbsent: [aBlock value]!




More information about the Squeak-dev mailing list