]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: Remove outdated comments.
authorLasse Collin <lasse.collin@tukaani.org>
Thu, 19 Apr 2012 12:25:26 +0000 (15:25 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Thu, 24 May 2012 16:16:14 +0000 (19:16 +0300)
src/liblzma/simple/simple_coder.c
src/liblzma/simple/simple_private.h

index 37de7fa1a0c5b0b12c1194b42a8fcc0cdd4e6fee..9e7bc289aeec183bc4d1682ba364d0fd1f953fbd 100644 (file)
@@ -35,9 +35,6 @@ copy_or_code(lzma_coder *coder, lzma_allocator *allocator,
 
        } else {
                // Call the next coder in the chain to provide us some data.
-               // We don't care about uncompressed_size here, because
-               // the next filter in the chain will do it for us (since
-               // we don't change the size of the data).
                const lzma_ret ret = coder->next.code(
                                coder->next.coder, allocator,
                                in, in_pos, in_size,
index a69f82785fba66a042d368fadd475e8e6d8ccc3e..fcf9f7c1980ff95e37eced79d609379596aa3978 100644 (file)
@@ -22,8 +22,7 @@ struct lzma_coder_s {
        /// Next filter in the chain
        lzma_next_coder next;
 
-       /// True if the next coder in the chain has returned LZMA_STREAM_END
-       /// or if we have processed uncompressed_size bytes.
+       /// True if the next coder in the chain has returned LZMA_STREAM_END.
        bool end_was_reached;
 
        /// True if filter() should encode the data; false to decode.