From 55594baf791ccb49dd5cdc256662360717b409bb Mon Sep 17 00:00:00 2001 From: judds Date: Thu, 7 Dec 2017 08:03:13 -0800 Subject: [PATCH] Remove deprecated BitmapPool constructor in RoundedCorners ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=178241507 --- .../glide/load/resource/bitmap/RoundedCorners.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/RoundedCorners.java b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/RoundedCorners.java index 0e0ce2622a..ac6a3a0c62 100644 --- a/library/src/main/java/com/bumptech/glide/load/resource/bitmap/RoundedCorners.java +++ b/library/src/main/java/com/bumptech/glide/load/resource/bitmap/RoundedCorners.java @@ -27,17 +27,6 @@ public RoundedCorners(int roundingRadius) { this.roundingRadius = roundingRadius; } - /** - * @param roundingRadius the corner radius (in device-specific pixels). - * @throws IllegalArgumentException if rounding radius is 0 or less. - * - * @deprecated Use {@link #RoundedCorners(int)} - */ - @Deprecated - public RoundedCorners(@SuppressWarnings("unused") BitmapPool bitmapPool, int roundingRadius) { - this(roundingRadius); - } - /** * @param roundingRadius the corner radius (in device-specific pixels). * @throws IllegalArgumentException if rounding radius is 0 or less.