'From Squeak3.2gamma of 15 January 2002 [latest update: #4843] on 28 April 2002 at 9:56:48 pm'! "Change Set: zipRewindFix-nk Date: 28 April 2002 Author: Ned Konz This fixes a bug in the Zip support and the Archive Viewer where it would extract short files from a compressed archive."! !ZipArchiveMember methodsFor: '-- all --' stamp: 'nk 4/28/2002 21:53'! rewindData readDataRemaining _ (desiredCompressionMethod = CompressionDeflated and: [ compressionMethod = CompressionDeflated ]) ifTrue: [ compressedSize ] ifFalse: [ uncompressedSize ]. ! !