| Index: webrtc/api/android/java/src/org/webrtc/Metrics.java
|
| diff --git a/webrtc/api/android/java/src/org/webrtc/Metrics.java b/webrtc/api/android/java/src/org/webrtc/Metrics.java
|
| index 69c81ee98b50a827ebc06ac791c65e1c7e9ea6b6..7f0f5cb979a3aab8b135f4764181194033559c2c 100644
|
| --- a/webrtc/api/android/java/src/org/webrtc/Metrics.java
|
| +++ b/webrtc/api/android/java/src/org/webrtc/Metrics.java
|
| @@ -36,7 +36,7 @@ public class Metrics {
|
| System.loadLibrary("jingle_peerconnection_so");
|
| }
|
| public final Map<String, HistogramInfo> map =
|
| - new HashMap<String, HistogramInfo>(); // <name, HistogramInfo>
|
| + new HashMap<String, HistogramInfo>(); // <name, HistogramInfo>
|
|
|
| /**
|
| * Class holding histogram information.
|
| @@ -46,7 +46,7 @@ public class Metrics {
|
| public final int max;
|
| public final int bucketCount;
|
| public final Map<Integer, Integer> samples =
|
| - new HashMap<Integer, Integer>(); // <value, # of events>
|
| + new HashMap<Integer, Integer>(); // <value, # of events>
|
|
|
| public HistogramInfo(int min, int max, int bucketCount) {
|
| this.min = min;
|
|
|