The Trunk: Network-nice.149.mcz

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

The Trunk: Network-nice.149.mcz

commits-2
Nicolas Cellier uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-nice.149.mcz

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

Name: Network-nice.149
Author: nice
Time: 8 December 2013, 2:31:50.15 pm
UUID: 1c5f64a6-9f1d-4a08-8194-01f71110f17a
Ancestors: Network-fbs.148

Classify some as yet unclassified methods

=============== Diff against Network-fbs.148 ===============

Item was changed:
+ ----- Method: FTPConnectionException>>defaultAction (in category 'handling') -----
- ----- Method: FTPConnectionException>>defaultAction (in category 'as yet unclassified') -----
  defaultAction
 
  self resume!

Item was changed:
+ ----- Method: FTPConnectionException>>isResumable (in category 'handling') -----
- ----- Method: FTPConnectionException>>isResumable (in category 'as yet unclassified') -----
  isResumable
 
  ^true!

Item was changed:
+ ----- Method: NameLookupFailure>>defaultAction (in category 'handling') -----
- ----- Method: NameLookupFailure>>defaultAction (in category 'accessing') -----
  defaultAction
  "Backward compatibility"
  | response |
  response := (UIManager default  chooseFrom: #( 'Retry' 'Give Up')
  title: self messageText).
  ^ response = 2
  ifFalse: [self retry]!