We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c6af2 commit 2f76842Copy full SHA for 2f76842
library/src/main/java/com/bumptech/glide/load/resource/bitmap/CenterCrop.java
@@ -1,6 +1,5 @@
1
package com.bumptech.glide.load.resource.bitmap;
2
3
-import android.content.Context;
4
import android.graphics.Bitmap;
5
import android.support.annotation.NonNull;
6
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
@@ -21,15 +20,6 @@ public CenterCrop() {
21
20
// Intentionally empty.
22
}
23
24
- /**
25
- * @deprecated Use {@link #CenterCrop()}.
26
- * @param context Ignored.
27
- */
28
- @Deprecated
29
- public CenterCrop(@SuppressWarnings("unused") Context context) {
30
- this();
31
- }
32
-
33
// Bitmap doesn't implement equals, so == and .equals are equivalent here.
34
@SuppressWarnings("PMD.CompareObjectsWithEquals")
35
@Override
0 commit comments