Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove duplicated code #66

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions ex/ImageDownloads/src/vandy/mooc/MVP.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,21 +77,6 @@ public interface RequiredPresenterOps
* Reset bitmap display on the user's screen to the default image.
*/
void resetBitmap();

/**
* Display a downloaded bitmap image if it's non-null;
* otherwise, it reports an error via a Toast that's displayed
* on the UI Thread. This method can be called from either
* the UI Thread or a background Thread.
*
* @param image
* The bitmap image
* @param completionCommand
* Command whose run() hook method is called after the
* image is displayed.
*/
void displayBitmap(final Bitmap image,
Runnable completionCommand);
}

/**
Expand Down