aboutsummaryrefslogtreecommitdiff
path: root/src/org/tukaani/xz/XZInputStream.java
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-30 00:18:17 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-11-30 00:18:17 +0000
commitd484f24e3453744aa0f9aca653d4a4f9f6657f9b (patch)
treef7ce3ef7bbd379ee4c157f39fbf64c85f70418cd /src/org/tukaani/xz/XZInputStream.java
parentfc2c08cf62bc6bef42d2781c1a44b3d0d3f1059d (diff)
parent621380fd0342422985d557ac37565b27d5269e9a (diff)
downloadxz-java-d484f24e3453744aa0f9aca653d4a4f9f6657f9b.tar.gz
Change-Id: Ieccde08752eafff0cc123e6be73a36025ad28967
Diffstat (limited to 'src/org/tukaani/xz/XZInputStream.java')
-rw-r--r--src/org/tukaani/xz/XZInputStream.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/org/tukaani/xz/XZInputStream.java b/src/org/tukaani/xz/XZInputStream.java
index 680f647..30374eb 100644
--- a/src/org/tukaani/xz/XZInputStream.java
+++ b/src/org/tukaani/xz/XZInputStream.java
@@ -22,10 +22,10 @@ import org.tukaani.xz.common.DecoderUtil;
* its input stream until the end of the input or until an error occurs.
* This supports decompressing concatenated .xz files.
*
- * <h4>Typical use cases</h4>
+ * <h2>Typical use cases</h2>
* <p>
* Getting an input stream to decompress a .xz file:
- * <p><blockquote><pre>
+ * <blockquote><pre>
* InputStream infile = new FileInputStream("foo.xz");
* XZInputStream inxz = new XZInputStream(infile);
* </pre></blockquote>
@@ -42,12 +42,12 @@ import org.tukaani.xz.common.DecoderUtil;
* the specified limit, MemoryLimitException will be thrown when reading
* from the stream. For example, the following sets the memory usage limit
* to 100&nbsp;MiB:
- * <p><blockquote><pre>
+ * <blockquote><pre>
* InputStream infile = new FileInputStream("foo.xz");
* XZInputStream inxz = new XZInputStream(infile, 100 * 1024);
* </pre></blockquote>
*
- * <h4>When uncompressed size is known beforehand</h4>
+ * <h2>When uncompressed size is known beforehand</h2>
* <p>
* If you are decompressing complete files and your application knows
* exactly how much uncompressed data there should be, it is good to try