[FIX]NetworkHost>>#nameString

Markus Fritsche Fritsche.Markus at gmx.net
Tue Mar 1 18:21:14 UTC 2005


NetworkHost>>#nameString prints the hostname on a stream, in the version 
I have at hand asString is missing.

On the other hand, I could also loaded packages in the wrong order ;)

Regards, Markus

-- 
http://reauktion.de/archer/
-------------- next part --------------
'From Squeak3.8gamma of ''24 November 2004'' [latest update: #6548] on 1 March 2005 at 7:00:34 pm'!

!NetworkHost methodsFor: 'accessing' stamp: 'maf 3/1/2005 18:58'!
nameString
	^ String
		streamContents: [:str | self name
				do: [:nm | str nextPutAll: nm asString]
				separatedBy: [str nextPut: $.]]! !



More information about the Squeak-dev mailing list