You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2014/04/12 18:52:11 UTC

svn commit: r905942 [36/38] - in /websites/production/commons/content/proper/commons-compress: ./ apidocs/ apidocs/org/apache/commons/compress/archivers/ apidocs/org/apache/commons/compress/archivers/ar/ apidocs/org/apache/commons/compress/archivers/ar...

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html Sat Apr 12 16:51:56 2014
@@ -312,7 +312,7 @@
 <a class="jxr_linenumber" name="L304" href="#L304">304</a> <em class="jxr_javadoccomment">             * it if the input file is empty.</em>
 <a class="jxr_linenumber" name="L305" href="#L305">305</a> <em class="jxr_javadoccomment">             */</em>
 <a class="jxr_linenumber" name="L306" href="#L306">306</a>             <strong class="jxr_keyword">if</strong> (<strong class="jxr_keyword">this</strong>.data == <strong class="jxr_keyword">null</strong>) {
-<a class="jxr_linenumber" name="L307" href="#L307">307</a>                 <strong class="jxr_keyword">this</strong>.data = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a>(<strong class="jxr_keyword">this</strong>.blockSize100k);
+<a class="jxr_linenumber" name="L307" href="#L307">307</a>                 <strong class="jxr_keyword">this</strong>.data = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a>(<strong class="jxr_keyword">this</strong>.blockSize100k);
 <a class="jxr_linenumber" name="L308" href="#L308">308</a>             }
 <a class="jxr_linenumber" name="L309" href="#L309">309</a> 
 <a class="jxr_linenumber" name="L310" href="#L310">310</a>             <em class="jxr_comment">// currBlockNo++;</em>
@@ -465,7 +465,7 @@
 <a class="jxr_linenumber" name="L457" href="#L457">457</a>     }
 <a class="jxr_linenumber" name="L458" href="#L458">458</a> 
 <a class="jxr_linenumber" name="L459" href="#L459">459</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> recvDecodingTables() <strong class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L460" href="#L460">460</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L460" href="#L460">460</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L461" href="#L461">461</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong>[] inUse = dataShadow.inUse;
 <a class="jxr_linenumber" name="L462" href="#L462">462</a>         <strong class="jxr_keyword">final</strong> byte[] pos = dataShadow.recvDecodingTables_pos;
 <a class="jxr_linenumber" name="L463" href="#L463">463</a>         <strong class="jxr_keyword">final</strong> byte[] selector = dataShadow.selector;
@@ -550,7 +550,7 @@
 <a class="jxr_linenumber" name="L542" href="#L542">542</a> <em class="jxr_javadoccomment">     */</em>
 <a class="jxr_linenumber" name="L543" href="#L543">543</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> createHuffmanDecodingTables(<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> alphaSize,
 <a class="jxr_linenumber" name="L544" href="#L544">544</a>                                              <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> nGroups) {
-<a class="jxr_linenumber" name="L545" href="#L545">545</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L545" href="#L545">545</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L546" href="#L546">546</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">char</strong>[][] len = dataShadow.temp_charArray2d;
 <a class="jxr_linenumber" name="L547" href="#L547">547</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] minLens = dataShadow.minLens;
 <a class="jxr_linenumber" name="L548" href="#L548">548</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[][] limit = dataShadow.limit;
@@ -581,7 +581,7 @@
 <a class="jxr_linenumber" name="L573" href="#L573">573</a>         recvDecodingTables();
 <a class="jxr_linenumber" name="L574" href="#L574">574</a> 
 <a class="jxr_linenumber" name="L575" href="#L575">575</a>         <strong class="jxr_keyword">final</strong> InputStream inShadow = <strong class="jxr_keyword">this</strong>.in;
-<a class="jxr_linenumber" name="L576" href="#L576">576</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L576" href="#L576">576</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L577" href="#L577">577</a>         <strong class="jxr_keyword">final</strong> byte[] ll8 = dataShadow.ll8;
 <a class="jxr_linenumber" name="L578" href="#L578">578</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] unzftab = dataShadow.unzftab;
 <a class="jxr_linenumber" name="L579" href="#L579">579</a>         <strong class="jxr_keyword">final</strong> byte[] selector = dataShadow.selector;
@@ -767,7 +767,7 @@
 <a class="jxr_linenumber" name="L759" href="#L759">759</a> 
 <a class="jxr_linenumber" name="L760" href="#L760">760</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> getAndMoveToFrontDecode0(<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> groupNo) <strong class="jxr_keyword">throws</strong> IOException {
 <a class="jxr_linenumber" name="L761" href="#L761">761</a>         <strong class="jxr_keyword">final</strong> InputStream inShadow = <strong class="jxr_keyword">this</strong>.in;
-<a class="jxr_linenumber" name="L762" href="#L762">762</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L762" href="#L762">762</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L763" href="#L763">763</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> zt = dataShadow.selector[groupNo] &amp; 0xff;
 <a class="jxr_linenumber" name="L764" href="#L764">764</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] limit_zt = dataShadow.limit[zt];
 <a class="jxr_linenumber" name="L765" href="#L765">765</a>         <strong class="jxr_keyword">int</strong> zn = dataShadow.minLens[zt];
@@ -947,7 +947,7 @@
 <a class="jxr_linenumber" name="L939" href="#L939">939</a>         }
 <a class="jxr_linenumber" name="L940" href="#L940">940</a>     }
 <a class="jxr_linenumber" name="L941" href="#L941">941</a> 
-<a class="jxr_linenumber" name="L942" href="#L942">942</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> <strong class="jxr_keyword">extends</strong> Object {
+<a class="jxr_linenumber" name="L942" href="#L942">942</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> <strong class="jxr_keyword">extends</strong> Object {
 <a class="jxr_linenumber" name="L943" href="#L943">943</a> 
 <a class="jxr_linenumber" name="L944" href="#L944">944</a>         <em class="jxr_comment">// (with blockSize 900k)</em>
 <a class="jxr_linenumber" name="L945" href="#L945">945</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong>[] inUse = <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">boolean</strong>[256]; <em class="jxr_comment">// 256 byte</em>
@@ -982,7 +982,7 @@
 <a class="jxr_linenumber" name="L974" href="#L974">974</a>         <em class="jxr_comment">// 4560782 byte</em>
 <a class="jxr_linenumber" name="L975" href="#L975">975</a>         <em class="jxr_comment">// ===============</em>
 <a class="jxr_linenumber" name="L976" href="#L976">976</a> 
-<a class="jxr_linenumber" name="L977" href="#L977">977</a>         <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a>(<strong class="jxr_keyword">int</strong> blockSize100k) {
+<a class="jxr_linenumber" name="L977" href="#L977">977</a>         <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a>(<strong class="jxr_keyword">int</strong> blockSize100k) {
 <a class="jxr_linenumber" name="L978" href="#L978">978</a>             <strong class="jxr_keyword">this</strong>.ll8 = <strong class="jxr_keyword">new</strong> byte[blockSize100k * BZip2Constants.BASEBLOCKSIZE];
 <a class="jxr_linenumber" name="L979" href="#L979">979</a>         }
 <a class="jxr_linenumber" name="L980" href="#L980">980</a> 

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html Sat Apr 12 16:51:56 2014
@@ -147,7 +147,7 @@
 <a class="jxr_linenumber" name="L139" href="#L139">139</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> LESSER_ICOST = 0;
 <a class="jxr_linenumber" name="L140" href="#L140">140</a> 
 <a class="jxr_linenumber" name="L141" href="#L141">141</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> hbMakeCodeLengths(<strong class="jxr_keyword">final</strong> byte[] len, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] freq,
-<a class="jxr_linenumber" name="L142" href="#L142">142</a>                                           <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dat, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> alphaSize,
+<a class="jxr_linenumber" name="L142" href="#L142">142</a>                                           <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dat, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> alphaSize,
 <a class="jxr_linenumber" name="L143" href="#L143">143</a>                                           <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> maxLen) {
 <a class="jxr_linenumber" name="L144" href="#L144">144</a>         <em class="jxr_comment">/*</em>
 <a class="jxr_linenumber" name="L145" href="#L145">145</a> <em class="jxr_comment">         * Nodes and heap entries run from 1. Entry 0 for both the heap and</em>
@@ -326,7 +326,7 @@
 <a class="jxr_linenumber" name="L318" href="#L318">318</a>     <em class="jxr_javadoccomment">/**</em>
 <a class="jxr_linenumber" name="L319" href="#L319">319</a> <em class="jxr_javadoccomment">     * All memory intensive stuff.</em>
 <a class="jxr_linenumber" name="L320" href="#L320">320</a> <em class="jxr_javadoccomment">     */</em>
-<a class="jxr_linenumber" name="L321" href="#L321">321</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> data;
+<a class="jxr_linenumber" name="L321" href="#L321">321</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> data;
 <a class="jxr_linenumber" name="L322" href="#L322">322</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BlockSort.html">BlockSort</a> blockSorter;
 <a class="jxr_linenumber" name="L323" href="#L323">323</a> 
 <a class="jxr_linenumber" name="L324" href="#L324">324</a>     <strong class="jxr_keyword">private</strong> OutputStream out;
@@ -425,7 +425,7 @@
 <a class="jxr_linenumber" name="L417" href="#L417">417</a> 
 <a class="jxr_linenumber" name="L418" href="#L418">418</a>         <strong class="jxr_keyword">if</strong> (lastShadow &lt; <strong class="jxr_keyword">this</strong>.allowableBlockSize) {
 <a class="jxr_linenumber" name="L419" href="#L419">419</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> currentCharShadow = <strong class="jxr_keyword">this</strong>.currentChar;
-<a class="jxr_linenumber" name="L420" href="#L420">420</a>             <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L420" href="#L420">420</a>             <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L421" href="#L421">421</a>             dataShadow.inUse[currentCharShadow] = <strong class="jxr_keyword">true</strong>;
 <a class="jxr_linenumber" name="L422" href="#L422">422</a>             <strong class="jxr_keyword">final</strong> byte ch = (byte) currentCharShadow;
 <a class="jxr_linenumber" name="L423" href="#L423">423</a> 
@@ -528,7 +528,7 @@
 <a class="jxr_linenumber" name="L520" href="#L520">520</a>         bsPutUByte('B');
 <a class="jxr_linenumber" name="L521" href="#L521">521</a>         bsPutUByte('Z');
 <a class="jxr_linenumber" name="L522" href="#L522">522</a> 
-<a class="jxr_linenumber" name="L523" href="#L523">523</a>         <strong class="jxr_keyword">this</strong>.data = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a>(<strong class="jxr_keyword">this</strong>.blockSize100k);
+<a class="jxr_linenumber" name="L523" href="#L523">523</a>         <strong class="jxr_keyword">this</strong>.data = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a>(<strong class="jxr_keyword">this</strong>.blockSize100k);
 <a class="jxr_linenumber" name="L524" href="#L524">524</a>         <strong class="jxr_keyword">this</strong>.blockSorter = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BlockSort.html">BlockSort</a>(<strong class="jxr_keyword">this</strong>.data);
 <a class="jxr_linenumber" name="L525" href="#L525">525</a> 
 <a class="jxr_linenumber" name="L526" href="#L526">526</a>         <em class="jxr_comment">// huffmanised magic bytes</em>
@@ -795,7 +795,7 @@
 <a class="jxr_linenumber" name="L787" href="#L787">787</a>     }
 <a class="jxr_linenumber" name="L788" href="#L788">788</a> 
 <a class="jxr_linenumber" name="L789" href="#L789">789</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">int</strong> sendMTFValues1(<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> nGroups, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> alphaSize) {
-<a class="jxr_linenumber" name="L790" href="#L790">790</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L790" href="#L790">790</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L791" href="#L791">791</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[][] rfreq = dataShadow.sendMTFValues_rfreq;
 <a class="jxr_linenumber" name="L792" href="#L792">792</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] fave = dataShadow.sendMTFValues_fave;
 <a class="jxr_linenumber" name="L793" href="#L793">793</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">short</strong>[] cost = dataShadow.sendMTFValues_cost;
@@ -915,7 +915,7 @@
 <a class="jxr_linenumber" name="L907" href="#L907">907</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> sendMTFValues2(<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> nGroups, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> nSelectors) {
 <a class="jxr_linenumber" name="L908" href="#L908">908</a>         <em class="jxr_comment">// assert (nGroups &lt; 8) : nGroups;</em>
 <a class="jxr_linenumber" name="L909" href="#L909">909</a> 
-<a class="jxr_linenumber" name="L910" href="#L910">910</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L910" href="#L910">910</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L911" href="#L911">911</a>         byte[] pos = dataShadow.sendMTFValues2_pos;
 <a class="jxr_linenumber" name="L912" href="#L912">912</a> 
 <a class="jxr_linenumber" name="L913" href="#L913">913</a>         <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = nGroups; --i &gt;= 0;) {
@@ -1110,7 +1110,7 @@
 <a class="jxr_linenumber" name="L1102" href="#L1102">1102</a>     }
 <a class="jxr_linenumber" name="L1103" href="#L1103">1103</a> 
 <a class="jxr_linenumber" name="L1104" href="#L1104">1104</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> sendMTFValues7() <strong class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L1105" href="#L1105">1105</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L1105" href="#L1105">1105</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L1106" href="#L1106">1106</a>         <strong class="jxr_keyword">final</strong> byte[][] len = dataShadow.sendMTFValues_len;
 <a class="jxr_linenumber" name="L1107" href="#L1107">1107</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[][] code = dataShadow.sendMTFValues_code;
 <a class="jxr_linenumber" name="L1108" href="#L1108">1108</a>         <strong class="jxr_keyword">final</strong> OutputStream outShadow = <strong class="jxr_keyword">this</strong>.out;
@@ -1175,7 +1175,7 @@
 <a class="jxr_linenumber" name="L1167" href="#L1167">1167</a> <em class="jxr_comment">     */</em>
 <a class="jxr_linenumber" name="L1168" href="#L1168">1168</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> generateMTFValues() {
 <a class="jxr_linenumber" name="L1169" href="#L1169">1169</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> lastShadow = <strong class="jxr_keyword">this</strong>.last;
-<a class="jxr_linenumber" name="L1170" href="#L1170">1170</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
+<a class="jxr_linenumber" name="L1170" href="#L1170">1170</a>         <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> dataShadow = <strong class="jxr_keyword">this</strong>.data;
 <a class="jxr_linenumber" name="L1171" href="#L1171">1171</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong>[] inUse = dataShadow.inUse;
 <a class="jxr_linenumber" name="L1172" href="#L1172">1172</a>         <strong class="jxr_keyword">final</strong> byte[] block = dataShadow.block;
 <a class="jxr_linenumber" name="L1173" href="#L1173">1173</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong>[] fmap = dataShadow.fmap;
@@ -1276,7 +1276,7 @@
 <a class="jxr_linenumber" name="L1268" href="#L1268">1268</a>         <strong class="jxr_keyword">this</strong>.nMTF = wr + 1;
 <a class="jxr_linenumber" name="L1269" href="#L1269">1269</a>     }
 <a class="jxr_linenumber" name="L1270" href="#L1270">1270</a> 
-<a class="jxr_linenumber" name="L1271" href="#L1271">1271</a>     <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a> <strong class="jxr_keyword">extends</strong> Object {
+<a class="jxr_linenumber" name="L1271" href="#L1271">1271</a>     <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a> <strong class="jxr_keyword">extends</strong> Object {
 <a class="jxr_linenumber" name="L1272" href="#L1272">1272</a> 
 <a class="jxr_linenumber" name="L1273" href="#L1273">1273</a>         <em class="jxr_comment">// with blockSize 900k</em>
 <a class="jxr_linenumber" name="L1274" href="#L1274">1274</a>         <em class="jxr_comment">/* maps unsigned byte =&gt; "does it occur in block" */</em>
@@ -1325,7 +1325,7 @@
 <a class="jxr_linenumber" name="L1317" href="#L1317">1317</a> <em class="jxr_javadoccomment">         */</em>
 <a class="jxr_linenumber" name="L1318" href="#L1318">1318</a>         <strong class="jxr_keyword">int</strong> origPtr;
 <a class="jxr_linenumber" name="L1319" href="#L1319">1319</a> 
-<a class="jxr_linenumber" name="L1320" href="#L1320">1320</a>         <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.html">Data</a>(<strong class="jxr_keyword">int</strong> blockSize100k) {
+<a class="jxr_linenumber" name="L1320" href="#L1320">1320</a>         <a href="../../../../../../org/apache/commons/compress/compressors/bzip2/BZip2CompressorInputStream.html">Data</a>(<strong class="jxr_keyword">int</strong> blockSize100k) {
 <a class="jxr_linenumber" name="L1321" href="#L1321">1321</a>             <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> n = blockSize100k * BZip2Constants.BASEBLOCKSIZE;
 <a class="jxr_linenumber" name="L1322" href="#L1322">1322</a>             <strong class="jxr_keyword">this</strong>.block = <strong class="jxr_keyword">new</strong> byte[(n + 1 + NUM_OVERSHOOT_BYTES)];
 <a class="jxr_linenumber" name="L1323" href="#L1323">1323</a>             <strong class="jxr_keyword">this</strong>.fmap = <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">int</strong>[n];

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.bzip2</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.bzip2</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -34,7 +34,7 @@
             	<a href="CRC.html" target="classFrame">CRC</a>
           	</li>
           	          	<li>
-            	<a href="BZip2CompressorOutputStream.html" target="classFrame">Data</a>
+            	<a href="BZip2CompressorInputStream.html" target="classFrame">Data</a>
           	</li>
           	          	<li>
             	<a href="Rand.html" target="classFrame">Rand</a>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/bzip2/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.bzip2</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.bzip2</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -67,7 +67,7 @@
             	</tr>
 				            	<tr>
               		<td>
-                		<a href="BZip2CompressorOutputStream.html" target="classFrame">Data</a>
+                		<a href="BZip2CompressorInputStream.html" target="classFrame">Data</a>
               		</td>
             	</tr>
 				            	<tr>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.gzip</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.gzip</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/gzip/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.gzip</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.gzip</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.lzma</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.lzma</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/lzma/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.lzma</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.lzma</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.pack200</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.pack200</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/pack200/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors.pack200</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors.pack200</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-frame.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-frame.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-summary.html (original)
+++ websites/production/commons/content/proper/commons-compress/xref/org/apache/commons/compress/compressors/package-summary.html Sat Apr 12 16:51:56 2014
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
-		<title>Apache Commons Compress 1.8 Reference Package org.apache.commons.compress.compressors</title>
+		<title>Apache Commons Compress 1.9-SNAPSHOT Reference Package org.apache.commons.compress.compressors</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>