Catch all exceptions when parsing IME meta data

am: dddc438e97

Change-Id: I9cf7bfa63632508fba473b3ae0066579a0dde31a
This commit is contained in:
Tadashi G. Takaoka
2016-09-16 21:58:18 +00:00
committed by android-build-merger

View File

@@ -3069,8 +3069,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
if (DEBUG) {
Slog.d(TAG, "Found an input method " + p);
}
} catch (XmlPullParserException | 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);
}
}