Loading java/src/com/android/inputmethod/compat/CompatUtils.java +4 −4 Original line number Diff line number Diff line Loading @@ -81,7 +81,7 @@ public final class CompatUtils { try { return constructor.newInstance(args); } catch (Exception e) { Log.e(TAG, "Exception in newInstance: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in newInstance", e); } return null; } Loading @@ -92,7 +92,7 @@ public final class CompatUtils { try { return method.invoke(receiver, args); } catch (Exception e) { Log.e(TAG, "Exception in invoke: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in invoke", e); } return defaultValue; } Loading @@ -103,7 +103,7 @@ public final class CompatUtils { try { return field.get(receiver); } catch (Exception e) { Log.e(TAG, "Exception in getFieldValue: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in getFieldValue", e); } return defaultValue; } Loading @@ -113,7 +113,7 @@ public final class CompatUtils { try { field.set(receiver, value); } catch (Exception e) { Log.e(TAG, "Exception in setFieldValue: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in setFieldValue", e); } } } Loading
java/src/com/android/inputmethod/compat/CompatUtils.java +4 −4 Original line number Diff line number Diff line Loading @@ -81,7 +81,7 @@ public final class CompatUtils { try { return constructor.newInstance(args); } catch (Exception e) { Log.e(TAG, "Exception in newInstance: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in newInstance", e); } return null; } Loading @@ -92,7 +92,7 @@ public final class CompatUtils { try { return method.invoke(receiver, args); } catch (Exception e) { Log.e(TAG, "Exception in invoke: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in invoke", e); } return defaultValue; } Loading @@ -103,7 +103,7 @@ public final class CompatUtils { try { return field.get(receiver); } catch (Exception e) { Log.e(TAG, "Exception in getFieldValue: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in getFieldValue", e); } return defaultValue; } Loading @@ -113,7 +113,7 @@ public final class CompatUtils { try { field.set(receiver, value); } catch (Exception e) { Log.e(TAG, "Exception in setFieldValue: " + e.getClass().getSimpleName()); Log.e(TAG, "Exception in setFieldValue", e); } } }