瀏覽代碼

fix codacy

AndyScherzinger 8 年之前
父節點
當前提交
2bd7611a31
共有 1 個文件被更改,包括 1 次插入2 次删除
  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);
     }
     
     /**