[squeak-dev] The Trunk: Network-pre.204.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Sep 9 09:50:35 UTC 2017


Patrick Rein uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-pre.204.mcz

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

Name: Network-pre.204
Author: pre
Time: 9 September 2017, 11:49:05.258212 am
UUID: 9c649cab-fd0e-f040-b203-268bcc758df6
Ancestors: Network-pre.203

Fixes minor issue with new MailAddressParser after using wrong message for trimming whitespace

=============== Diff against Network-pre.203 ===============

Item was changed:
  ----- Method: MailAddressParser>>grabName (in category 'parsing') -----
  grabName
  
  	| name |
  	name := ''.
  	[tokens isEmpty not and: [#(Atom QuotedString $. $@) includes: (tokens last type) ]] 
  		whileTrue: [ name := {tokens removeLast text copyWithoutAll: '"'. name} joinSeparatedBy: Character space ].
+ 	^ name withBlanksTrimmed!
- 	^ name trimBoth!



More information about the Squeak-dev mailing list