From 23975d933bcda7d136340b9988f2bd575065b667 Mon Sep 17 00:00:00 2001 From: judds Date: Wed, 6 Dec 2017 20:10:03 -0800 Subject: [PATCH] Remove a deprecated constructor in CenterCrop. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=178191424 --- .../bumptech/glide/load/resource/bitmap/CenterCrop.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/CenterCrop.java b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/CenterCrop.java index 15390a93b4..1e0c151a20 100644 --- a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/CenterCrop.java +++ b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/CenterCrop.java @@ -30,15 +30,6 @@ public CenterCrop(@SuppressWarnings("unused") Context context) { this(); } - /** - * @deprecated Use {@link #CenterCrop()}. - * @param bitmapPool Ignored. - */ - @Deprecated - public CenterCrop(@SuppressWarnings("unused") BitmapPool bitmapPool) { - this(); - } - // Bitmap doesn't implement equals, so == and .equals are equivalent here. @SuppressWarnings("PMD.CompareObjectsWithEquals") @Override