Skip to content

Commit

Permalink
chore(android): remove "Could not open stream to get bitmap" warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jquick-axway authored and sgtcoolguy committed May 24, 2021
1 parent 76f9993 commit 0792f50
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -412,7 +412,6 @@ public Bitmap getBitmap(boolean needRetry, boolean densityScaled)
}
} else {
if (is == null) {
Log.w(TAG, "Could not open stream to get bitmap");
return null;
}
try {
Expand All @@ -425,7 +424,6 @@ public Bitmap getBitmap(boolean needRetry, boolean densityScaled)
}
} finally {
if (is == null) {
Log.w(TAG, "Could not open stream to get bitmap");
return null;
}
try {
Expand Down Expand Up @@ -680,7 +678,6 @@ public Bitmap getBitmap(View parent, TiDimension destWidthDimension, TiDimension

InputStream is = getInputStream();
if (is == null) {
Log.w(TAG, "Could not open stream to get bitmap");
return null;
}

Expand Down

0 comments on commit 0792f50

Please sign in to comment.