media Utils: remove parse integer logspam

Bug: 21569707
Change-Id: I808ce760f55cf6aad8376bc7ca3b3c5a88cb6b01
This commit is contained in:
Robert Shih
2015-06-03 10:15:59 -07:00
parent 36e3997451
commit dcb5ab97f6

View File

@@ -209,6 +209,9 @@ class Utils {
}
static int parseIntSafely(Object o, int fallback) {
if (o == null) {
return fallback;
}
try {
String s = (String)o;
return Integer.parseInt(s);