From 73654e27dab854fe40204b286bf0ad9afbd88f29 Mon Sep 17 00:00:00 2001 From: olly Date: Sat, 14 Sep 2019 17:58:15 +0100 Subject: [PATCH] Minor cleanup to Loader documentation PiperOrigin-RevId: 269092322 --- .../java/com/google/android/exoplayer2/upstream/Loader.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 b5a13f3b80..b9032cb8e0 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 @@ -158,12 +158,12 @@ public final class Loader implements LoaderErrorThrower { /** Retries the load using the default delay and resets the error count. */ public static final LoadErrorAction RETRY_RESET_ERROR_COUNT = createRetryAction(/* resetErrorCount= */ true, C.TIME_UNSET); - /** Discards the failed loading task and ignores any errors that have occurred. */ + /** Discards the failed {@link Loadable} and ignores any errors that have occurred. */ public static final LoadErrorAction DONT_RETRY = new LoadErrorAction(ACTION_TYPE_DONT_RETRY, C.TIME_UNSET); /** - * Discards the failed load. The next call to {@link #maybeThrowError()} will throw the last load - * error. + * Discards the failed {@link Loadable}. The next call to {@link #maybeThrowError()} will throw + * the last load error. */ public static final LoadErrorAction DONT_RETRY_FATAL = new LoadErrorAction(ACTION_TYPE_DONT_RETRY_FATAL, C.TIME_UNSET);