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

commits at source.squeak.org commits at source.squeak.org
Fri Mar 19 18:36:24 UTC 2010


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

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

Name: Nebraska-nice.27
Author: nice
Time: 19 March 2010, 7:36:18.34 pm
UUID: 6a2d4cda-c12c-b84a-9d46-de5e046090d7
Ancestors: Nebraska-nice.26

Let nextPut: answer the put object.
Same for nextPutAll:, answer the collection argument


=============== Diff against Nebraska-nice.26 ===============

Item was changed:
  ----- Method: LoopbackStringSocket>>nextPut: (in category 'I/O') -----
  nextPut: aStringArray
  
+ 	inArrays ifNil: [^aStringArray].
- 	inArrays ifNil: [^self].
  
+ 	^outArrays add: aStringArray.
- 	outArrays add: aStringArray.
  	"WRITESTRINGSIZES ifNil: [WRITESTRINGSIZES := Bag new].
  	aStringArray do: [ :each | WRITESTRINGSIZES add: each size]."!

Item was changed:
  ----- Method: ObjectSocket>>nextPut: (in category 'stream protocol') -----
  nextPut: anObject
+ 	^outObjects addLast: anObject!
- 	outObjects addLast: anObject!




More information about the Squeak-dev mailing list