summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/BitmapDecoder.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-04 11:35:05 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-04 11:35:05 +0200
commitb712ffee8f5d42c8bf9c27a9f8a10688d4afd07b (patch)
treecc797c80dbcd99d3043bb66ede6d32356af7af35 /src/de/danoeh/antennapod/util/BitmapDecoder.java
parentef7a20f056aa723bb9746e3f465f4008205cce6b (diff)
downloadAntennaPod-b712ffee8f5d42c8bf9c27a9f8a10688d4afd07b.zip
Removed imageview from channellist
Diffstat (limited to 'src/de/danoeh/antennapod/util/BitmapDecoder.java')
-rw-r--r--src/de/danoeh/antennapod/util/BitmapDecoder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/util/BitmapDecoder.java b/src/de/danoeh/antennapod/util/BitmapDecoder.java
index d9975a0bb..65664ddd9 100644
--- a/src/de/danoeh/antennapod/util/BitmapDecoder.java
+++ b/src/de/danoeh/antennapod/util/BitmapDecoder.java
@@ -41,7 +41,7 @@ public class BitmapDecoder {
options.inJustDecodeBounds = false;
options.inSampleSize = sampleSize;
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
-
+
Bitmap decodedBitmap = BitmapFactory.decodeFile(fileUrl, options);
if (decodedBitmap == null) {
Log.i(TAG,