# HG changeset patch # User Claus Gittinger # Date 1566807869 -7200 # Node ID 8834593e27e15ad25675d25b49a8d56e6cb2e1db # Parent bfed222dcaad94bc5d911d8f16eb10474371a61b #QUALITY by exept class: BaseNCoder changed: #nextPut: #nextPutAll:startingAt:to: return value consistency diff -r bfed222dcaad -r 8834593e27e1 BaseNCoder.st --- a/BaseNCoder.st Mon Aug 26 10:10:18 2019 +0200 +++ b/BaseNCoder.st Mon Aug 26 10:24:29 2019 +0200 @@ -482,7 +482,7 @@ nextPut:aByte "encode aByte on the output stream" - ^ self nextPutByte:aByte asInteger. + self nextPutByte:aByte asInteger. ! nextPutAll:aCollection startingAt:first to:last @@ -492,7 +492,7 @@ aCollection from:first to:last do:[:element | self nextPutByte:element ]. - ^ aCollection + ! nextPutBytes:aCollectionOfBytes