File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
picasso/src/main/java/com/squareup/picasso Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -40,18 +40,18 @@ public interface Target {
40
40
/**
41
41
* Callback indicating the image could not be successfully loaded.
42
42
* <p/>
43
- * <strong>Note:</strong> The passed Drawable may be null if none has been specified
44
- * via {@link RequestCreator#error(android.graphics.drawable.Drawable)}
43
+ * <strong>Note:</strong> The passed {@link Drawable} may be {@code null} if none has been
44
+ * specified via {@link RequestCreator#error(android.graphics.drawable.Drawable)}
45
45
* or {@link RequestCreator#error(int)}.
46
46
*/
47
47
void onBitmapFailed (Drawable errorDrawable );
48
48
49
49
/**
50
- * Callback invoked right before your request is submitted.
51
- * <p/>
52
- * <strong>Note:</strong> The passed Drawable may be null if none has been specified
53
- * via {@link RequestCreator#placeholder(android.graphics.drawable.Drawable)}
54
- * or {@link RequestCreator#placeholder(int)}.
55
- */
50
+ * Callback invoked right before your request is submitted.
51
+ * <p/>
52
+ * <strong>Note:</strong> The passed {@link Drawable} may be {@code null} if none has been
53
+ * specified via {@link RequestCreator#placeholder(android.graphics.drawable.Drawable)}
54
+ * or {@link RequestCreator#placeholder(int)}.
55
+ */
56
56
void onPrepareLoad (Drawable placeHolderDrawable );
57
57
}
You can’t perform that action at this time.
0 commit comments