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

am: 0cf8a60b3f

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

View File

@@ -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);
}
}