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

am: f71d2cddf1

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

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