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

Commit

Permalink
Merge pull request #411 from cco3/badurl
Browse files Browse the repository at this point in the history
[android] Remove unhelpful url from debug display
  • Loading branch information
mmocny committed May 28, 2015
2 parents 9a5b0bf + d134c8e commit 52ae454
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 52ae454

Please sign in to comment.