Hi,
in gemstone stream next throws an exception if the stream is atEnd. In pharo it returns
nil. I changed in
PBBlog>>defaultChildName
code next
ifNotNilDo: [ :separator | stream nextPut: separator ] ] ]
to
code atEnd
ifFalse: [ stream nextPut: code next ] ] ]
Norbert