Skip to content

Commit

Permalink
Remove deprecated constructors in GifDrawableTransformation.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=184142291
  • Loading branch information
sjudd committed Feb 12, 2018
1 parent 05e3215 commit b68ba43
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,6 @@ public GifDrawableTransformation(Transformation<Bitmap> wrapped) {
this.wrapped = Preconditions.checkNotNull(wrapped);
}

/**
* @deprecated Use {@link #GifDrawableTransformation(Transformation)}.
*/
@Deprecated
public GifDrawableTransformation(
@SuppressWarnings("unused") Context context, Transformation<Bitmap> wrapped) {
this(wrapped);
}

/**
* @deprecated Use {@link #GifDrawableTransformation(Transformation)}
*/
@Deprecated
public GifDrawableTransformation(
Transformation<Bitmap> wrapped, @SuppressWarnings("unused") BitmapPool bitmapPool) {
this(wrapped);
}

@NonNull
@Override
public Resource<GifDrawable> transform(
Expand Down

0 comments on commit b68ba43

Please sign in to comment.