Merge "DO NOT MERGE: Catch all exceptions when parsing IME meta data" into mnc-dev

This commit is contained in:
Tadashi G. Takaoka
2016-09-18 11:56:23 +00:00
committed by Android (Google) Code Review

View File

@@ -2932,10 +2932,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
Slog.d(TAG, "Found an input method " + p);
}
} catch (XmlPullParserException e) {
Slog.w(TAG, "Unable to load input method " + compName, e);
} catch (IOException e) {
Slog.w(TAG, "Unable to load input method " + compName, e);
} catch (Exception e) {
Slog.wtf(TAG, "Unable to load input method " + compName, e);
}
}