From f6d0e34ceaf21b35b3da7901d54c64f6d9d9f259 Mon Sep 17 00:00:00 2001 From: aquilescanta Date: Fri, 15 May 2020 18:23:02 +0100 Subject: [PATCH] Fix Extractor.read throws documentation PiperOrigin-RevId: 311755157 --- .../java/com/google/android/exoplayer2/extractor/Extractor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/Extractor.java b/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/Extractor.java index d1371d56b6..c3920ca7da 100644 --- a/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/Extractor.java +++ b/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/Extractor.java @@ -96,7 +96,7 @@ public interface Extractor { * @param seekPosition If {@link #RESULT_SEEK} is returned, this holder is updated to hold the * position of the required data. * @return One of the {@code RESULT_} values defined in this interface. - * @throws IOException If an error occurred reading from the input. + * @throws IOException If an error occurred reading from or parsing the input. */ @ReadResult int read(ExtractorInput input, PositionHolder seekPosition) throws IOException;