Skip to content

Commit 55543d3

Browse files
author
Peter Leibiger
committed
added documentation links
1 parent edc7f0a commit 55543d3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

picasso/src/main/java/com/squareup/picasso/Target.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@ public interface Target {
4040
/**
4141
* Callback indicating the image could not be successfully loaded.
4242
* <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)}
4545
* or {@link RequestCreator#error(int)}.
4646
*/
4747
void onBitmapFailed(Drawable errorDrawable);
4848

4949
/**
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+
*/
5656
void onPrepareLoad(Drawable placeHolderDrawable);
5757
}

0 commit comments

Comments
 (0)