| Index: blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java
|
| diff --git a/blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java b/blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java
|
| index f4344f4ccc9df3bc31deae5c277b2459a48447ac..ddee170d7a77aa4c22e006b907a28d959b3f32ad 100644
|
| --- a/blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java
|
| +++ b/blimp/client/app/android/java/src/org/chromium/blimp/BlimpRendererActivity.java
|
| @@ -4,6 +4,7 @@
|
|
|
| package org.chromium.blimp;
|
|
|
| +import android.annotation.SuppressLint;
|
| import android.app.Activity;
|
| import android.content.Intent;
|
| import android.os.Bundle;
|
| @@ -283,6 +284,7 @@ public class BlimpRendererActivity
|
| * Displays debug metrics up to one decimal place.
|
| */
|
| @Override
|
| + @SuppressLint("DefaultLocale")
|
| public void updateDebugStatsUI(int received, int sent, int commits) {
|
| TextView tv = (TextView) findViewById(R.id.bytes_received_client);
|
| tv.setText(String.format("%.1f", (float) received / BYTES_PER_KILO));
|
|
|