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

Commit 5e3168ef authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by android-build-merger
Browse files

DO NOT MERGE: Catch all exceptions when parsing IME meta data am: 7bb4c825 am: 0cf8a60b

am: 985557ce

Change-Id: I2069430cc25f652fbf9eb1a45c704cc435b29803
parents 33ada2e9 985557ce
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -2949,10 +2949,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);
            }
        }