Browse Source

fix codacy

AndyScherzinger 8 years ago
parent
commit
2bd7611a31
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/main/java/com/owncloud/android/utils/BitmapUtils.java

+ 1 - 2
src/main/java/com/owncloud/android/utils/BitmapUtils.java

@@ -120,8 +120,7 @@ public class BitmapUtils {
         float scale = px / max;
         int w = Math.round(scale * width);
         int h = Math.round(scale * height);
-        bitmap = Bitmap.createScaledBitmap(bitmap, w, h, true);
-        return bitmap;
+        return Bitmap.createScaledBitmap(bitmap, w, h, true);
     }
     
     /**