소스 검색

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);
     }
     
     /**