Small cleanup in CompatUtils

Change-Id: I9b4a8d7eae744ba6252a6475b75240248c70a3c0
main
Ken Wakasa 2013-03-02 17:18:18 +09:00
parent 7d2e465ac0
commit a8d3d50970
1 changed files with 4 additions and 4 deletions

View File

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