1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-11 01:04:04 +08:00
This commit is contained in:
wasabeef 2015-01-12 01:03:03 +09:00
parent 2f634e0569
commit 2e6be7b2f8
5 changed files with 5 additions and 5 deletions

View File

@ -299,6 +299,6 @@ public class BlurTransformation implements Transformation<Bitmap> {
@Override
public String getId() {
return "BlurTransform(radius=" + mRadius + ")";
return "BlurTransformation(radius=" + mRadius + ")";
}
}

View File

@ -59,6 +59,6 @@ public class ColorFilterTransformation implements Transformation<Bitmap> {
@Override
public String getId() {
return "ColorFilterTransform(color=" + mColor + ")";
return "ColorFilterTransformation(color=" + mColor + ")";
}
}

View File

@ -66,6 +66,6 @@ public class CropCircleTransformation implements Transformation<Bitmap> {
@Override
public String getId() {
return "CircleTransform()";
return "CropCircleTransformation()";
}
}

View File

@ -57,6 +57,6 @@ public class CropSquareTransformation implements Transformation<Bitmap> {
@Override
public String getId() {
return "CropSquareTransform(width=" + mWidth + ", height=" + mHeight + ")";
return "CropSquareTransformation(width=" + mWidth + ", height=" + mHeight + ")";
}
}

View File

@ -71,6 +71,6 @@ public class CropTransformation implements Transformation<Bitmap> {
@Override
public String getId() {
return "CropTransform(width=" + mWidth + ", height=" + mHeight + ")";
return "CropTransformation(width=" + mWidth + ", height=" + mHeight + ")";
}
}