From f70783cb779932cf0d4d0312b9e5680ada10fcc4 Mon Sep 17 00:00:00 2001 From: Arthur Date: Sat, 13 Feb 2016 11:42:56 +0200 Subject: [PATCH] fix doc error for lint --- .../java/com/theartofdev/edmodo/cropper/CropImageView.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cropper/src/main/java/com/theartofdev/edmodo/cropper/CropImageView.java b/cropper/src/main/java/com/theartofdev/edmodo/cropper/CropImageView.java index 640142f7..427a1018 100644 --- a/cropper/src/main/java/com/theartofdev/edmodo/cropper/CropImageView.java +++ b/cropper/src/main/java/com/theartofdev/edmodo/cropper/CropImageView.java @@ -338,7 +338,7 @@ public Uri getImageUri() { * Set the crop window position and size to the given rectangle.
* Image to crop must be first set before invoking this, for async after complete callback. * - * @param crop window rectangle (position and size) relative to source bitmap + * @param rect window rectangle (position and size) relative to source bitmap */ public void setCropRect(Rect rect) { mCropOverlayView.setInitialCropWindowRect(rect); @@ -474,8 +474,6 @@ public void getCroppedImageAsync() { * * @param cropShape the shape to crop the image: {@link CropShape#RECTANGLE} will get the raw crop rectangle from * the image, {@link CropShape#OVAL} will "fix" rectangle to oval by setting outside pixels to transparent. - * @param reqWidth the width to downsample the cropped image to - * @param reqHeight the height to downsample the cropped image to */ public void getCroppedImageAsync(CropShape cropShape) { getCroppedImageAsync(cropShape, 0, 0);