From 1f89903bbb3e2ec130fec8dcd21ac0ff559f7167 Mon Sep 17 00:00:00 2001 From: eguven Date: Wed, 8 Aug 2018 11:29:31 -0700 Subject: [PATCH] Minor javadoc fix ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=207918525 --- .../src/main/java/com/google/android/exoplayer2/util/Util.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/util/Util.java b/library/core/src/main/java/com/google/android/exoplayer2/util/Util.java index 4b2944ce1a..ef5591c535 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/util/Util.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/util/Util.java @@ -1648,7 +1648,7 @@ public final class Util { * @param output Wraps an output buffer to be used to store the uncompressed data. If {@code * output.data} is null or it isn't big enough to hold the uncompressed data, a new array is * created. If {@code true} is returned then the output's position will be set to 0 and its - * length will be set to the length of the uncompressed data. + * limit will be set to the length of the uncompressed data. * @param inflater If not null, used to uncompressed the input. Otherwise a new {@link Inflater} * is created. * @return Whether the input is uncompressed successfully.