Merge "Reduce log spam in TimeSparseArray" into pi-dev

am: bd2e790946

Change-Id: Iffacb38ca50741f78c3d49aa5ace6416eb7280ab
This commit is contained in:
Daniel Cardenas
2018-04-05 11:18:24 -07:00
committed by android-build-merger

View File

@@ -88,7 +88,7 @@ public class TimeSparseArray<E> extends LongSparseArray<E> {
key++;
keyIndex++;
}
if (key >= origKey + 10) {
if (key >= origKey + 100) {
Slog.w(TAG, "Value " + value + " supposed to be inserted at " + origKey
+ " displaced to " + key);
}