DO NOT MERGE: Catch all exceptions when parsing IME meta data

am: 43f4980e77

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

View File

@@ -2709,10 +2709,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);
}
}