Skip to content

Commit

Permalink
Removed some debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lew committed Oct 24, 2013
1 parent 71e817a commit 3688dea
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import android.text.style.ForegroundColorSpan;
import android.text.style.RelativeSizeSpan;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
Expand Down Expand Up @@ -95,8 +94,6 @@ public void setCellSize(int cellSize) {
}

public void bind(Movie movie) {
long start = System.nanoTime();

mPosterView.setImageBitmap(BitmapCache.getBitmap(movie.getPosterResId()));
mTitleView.setText(movie.getTitle());

Expand Down Expand Up @@ -158,8 +155,6 @@ public void bind(Movie movie) {
}

mFilmRatingTextView.setText(movie.getFilmRating());

Log.i("test", "bind() time: " + ((System.nanoTime() - start) / 1000000));
}

private CharSequence makeTwoLineText(String lineOne, String lineTwo) {
Expand Down

0 comments on commit 3688dea

Please sign in to comment.