Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
[android] Remove unhelpful url from debug display
Browse files Browse the repository at this point in the history
  • Loading branch information
cco3 committed May 28, 2015
1 parent 4ef9017 commit d134c8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ private void updateDebugView(String url, View view) {

float pwsTripTime = mUrlToPwsTripTime.get(url) / 1000.0f;
String pwsTripTimeString = "" + getString(R.string.metadata_debug_pws_trip_time_prefix)
+ new DecimalFormat("##.##s").format(pwsTripTime) + " " + url;
+ new DecimalFormat("##.##s").format(pwsTripTime);
pwsTripTimeView.setText(pwsTripTimeString);
} else {
rankView.setText("");
Expand Down

0 comments on commit d134c8e

Please sign in to comment.