From 93563631175d5c2b1856f932b457d94e2ce82c6e Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Mon, 16 Oct 2017 08:46:54 -0700 Subject: [PATCH] Document load() exceptions ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=172329677 --- .../java/com/google/android/exoplayer2/upstream/Loader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/upstream/Loader.java b/library/core/src/main/java/com/google/android/exoplayer2/upstream/Loader.java index 02e9a32116..bd70150573 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/upstream/Loader.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/upstream/Loader.java @@ -61,8 +61,8 @@ public final class Loader implements LoaderErrorThrower { /** * Performs the load, returning on completion or cancellation. * - * @throws IOException - * @throws InterruptedException + * @throws IOException If the input could not be loaded. + * @throws InterruptedException If the thread was interrupted. */ void load() throws IOException, InterruptedException;