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

Bug: 30568284
Change-Id: I0b613f8ce0f014320c5ac1bf445699ea2702a0a2
(manually cherry picked from 9b2997d22e6ce2a15065d8e7608dd77b316c2065)
This commit is contained in:
Tadashi G. Takaoka
2016-09-16 12:00:57 +09:00
parent 1bdd10a953
commit f71d2cddf1

View File

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