media Utils: remove parse integer logspam
Bug: 21569707 Change-Id: I808ce760f55cf6aad8376bc7ca3b3c5a88cb6b01
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user