~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/compressors/bzip2/BZip2CompressorOutputStream.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-03-13 08:37:01 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140313083701-spnlyo3fl3qcp0ab
Tags: 1.8-1
* New upstream release
* Updated the OSGi metadata
* The dependency on libxz-java is now suggested and no longer required

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 * <code>65k + (5 * blocksize)</code>.
53
53
 * </pre>
54
54
 *
55
 
 * <table width="100%" border="1">
56
 
 * <colgroup> <col width="33%" /> <col width="33%" /> <col width="33%" />
57
 
 * </colgroup>
 
55
 * <table width="100%" border="1" summary="Memory usage by blocksize">
58
56
 * <tr>
59
57
 * <th colspan="3">Memory usage by blocksize</th>
60
58
 * </tr>
369
367
     * @throws IOException
370
368
     *             if an I/O error occurs in the specified stream.
371
369
     * @throws IllegalArgumentException
372
 
     *             if <code>(blockSize < 1) || (blockSize > 9)</code>.
 
370
     *             if <code>(blockSize &lt; 1) || (blockSize &gt; 9)</code>.
373
371
     * @throws NullPointerException
374
372
     *             if <code>out == null</code>.
375
373
     *