[squeak-dev] The Trunk: Nebraska-nice.25.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 18 18:42:02 UTC 2010


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

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

Name: Nebraska-nice.25
Author: nice
Time: 18 January 2010, 7:41:35.025 pm
UUID: 9a474d3e-d94b-de44-979f-4fe9ca8a7200
Ancestors: Nebraska-ar.24

move temp assignment outside block

=============== Diff against Nebraska-ar.24 ===============

Item was changed:
  ----- Method: EToyPeerToPeer>>doReceiveData (in category 'receiving') -----
  doReceiveData
  
  	| answer |
  
+ 	answer := [self doReceiveOneMessage] 
- 	[answer := self doReceiveOneMessage] 
  		on: Error
  		do: [ :ex | 
  			communicatorMorph commResult: {#message -> (ex description,' ',socket printString)}.
  			^false
  		].
  	communicatorMorph commResult: {
  		#message -> 'OK'. 
  		#data -> answer .
  		#ipAddress -> remoteSocketAddress.
  	}.
  	^answer size > 0
  
  !




More information about the Squeak-dev mailing list