Skip to content
Snippets Groups Projects
Commit 2c442e96 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Stop using return within finally"

parents 8be6cc89 76010492
No related branches found
No related tags found
No related merge requests found
......@@ -530,14 +530,13 @@ public final class RadioMetadata implements Parcelable {
Bitmap bmp = null;
try {
bmp = BitmapFactory.decodeByteArray(value, 0, value.length);
} catch (Exception e) {
} finally {
if (bmp == null) {
return -1;
if (bmp != null) {
mBundle.putParcelable(key, bmp);
return 0;
}
mBundle.putParcelable(key, bmp);
return 0;
} catch (Exception e) {
}
return -1;
}
int putClockFromNative(int nativeKey, long utcEpochSeconds, int timezoneOffsetInMinutes) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment