Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8fa8da72 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

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

parents f6d7c1ed 43f4980e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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);
            }
        }