From 1009c5f6cce2a9f0e77365cfdc7e4464be4c5f82 Mon Sep 17 00:00:00 2001 From: Yuriy Budiyev Date: Sat, 17 Feb 2018 13:13:02 +0300 Subject: [PATCH] Dev --- .../java/com/budiyev/android/imageloader/ImageRequest.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/com/budiyev/android/imageloader/ImageRequest.java b/src/main/java/com/budiyev/android/imageloader/ImageRequest.java index 513c78c..a862d74 100644 --- a/src/main/java/com/budiyev/android/imageloader/ImageRequest.java +++ b/src/main/java/com/budiyev/android/imageloader/ImageRequest.java @@ -277,7 +277,6 @@ public ImageRequest onDisplayed(@Nullable DisplayCallback callback) { * Load image synchronously (on current thread) * * @return Loaded image or {@code null} if image could not be loaded - * @throws IllegalStateException if request has already been executed */ @Nullable @WorkerThread @@ -289,7 +288,6 @@ public Bitmap loadSync() { /** * Load image asynchronously * - * @throws IllegalStateException if request has already been executed * @see #onLoaded */ @AnyThread @@ -300,8 +298,6 @@ public void load() { /** * Load image asynchronously and display it in the specified {@code view} - * - * @throws IllegalStateException if request has already been executed */ @MainThread public void load(@NonNull View view) { @@ -365,8 +361,6 @@ public void load(@NonNull View view) { /** * Delete all cached images for specified data asynchronously - * - * @throws IllegalStateException if request has already been executed */ @AnyThread public void invalidate() {