From 05e3215ceca003ee295ed373f86e17caa3568c10 Mon Sep 17 00:00:00 2001 From: judds Date: Thu, 1 Feb 2018 08:21:03 -0800 Subject: [PATCH] Remove deprecated constructors in BitmapDrawableTransformation ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=184142212 --- .../bitmap/BitmapDrawableTransformation.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/BitmapDrawableTransformation.java b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/BitmapDrawableTransformation.java index a783e616c4..2b3bdc5745 100644 --- a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/BitmapDrawableTransformation.java +++ b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/BitmapDrawableTransformation.java @@ -7,7 +7,6 @@ import android.support.annotation.NonNull; import com.bumptech.glide.load.Transformation; import com.bumptech.glide.load.engine.Resource; -import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool; import com.bumptech.glide.util.Preconditions; import java.security.MessageDigest; @@ -28,26 +27,6 @@ public BitmapDrawableTransformation(Transformation wrapped) { Preconditions.checkNotNull(new DrawableTransformation(wrapped, /*isRequired=*/ false)); } - /** - * @deprecated use {@link #BitmapDrawableTransformation(Transformation)}} - */ - @Deprecated - public BitmapDrawableTransformation( - @SuppressWarnings("unused") Context context, Transformation wrapped) { - this(wrapped); - } - - /** - * @deprecated use {@link #BitmapDrawableTransformation(Transformation)}} - */ - @Deprecated - public BitmapDrawableTransformation( - @SuppressWarnings("unused") Context context, - @SuppressWarnings("unused") BitmapPool bitmapPool, - Transformation wrapped) { - this(wrapped); - } - @NonNull @Override public Resource transform(