The Trunk: Nebraska-nice.27.mcz

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

The Trunk: Nebraska-nice.27.mcz

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