The Trunk: WebClient-Core-topa.101.mcz

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

The Trunk: WebClient-Core-topa.101.mcz

commits-2
Tobias Pape uploaded a new version of WebClient-Core to project The Trunk:
http://source.squeak.org/trunk/WebClient-Core-topa.101.mcz

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

Name: WebClient-Core-topa.101
Author: topa
Time: 17 June 2016, 9:00:40.215483 pm
UUID: 97088e21-0ce9-4029-be2c-4e82d0f0050a
Ancestors: WebClient-Core-ul.100

Only close streams that are still connected.

=============== Diff against WebClient-Core-ul.100 ===============

Item was changed:
  ----- Method: WebClient>>close (in category 'initialize') -----
  close
  "Close the client's stream"
 
  stream ifNotNil:[
+ stream isConnected ifTrue: [stream close].
+ stream := nil].
- stream close.
- stream := nil.
- ].
  !