Initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.bumptech.glide.load.resource;
|
||||
|
||||
import android.content.Context;
|
||||
import com.bumptech.glide.load.Transformation;
|
||||
import com.bumptech.glide.load.engine.Resource;
|
||||
import java.security.MessageDigest;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class UnitTransformation<T> implements Transformation<T> {
|
||||
private static final Transformation<?> b = new UnitTransformation();
|
||||
|
||||
private UnitTransformation() {
|
||||
}
|
||||
|
||||
public static <T> UnitTransformation<T> a() {
|
||||
return (UnitTransformation) b;
|
||||
}
|
||||
|
||||
@Override // com.bumptech.glide.load.Transformation
|
||||
public Resource<T> a(Context context, Resource<T> resource, int i, int i2) {
|
||||
return resource;
|
||||
}
|
||||
|
||||
@Override // com.bumptech.glide.load.Key
|
||||
public void a(MessageDigest messageDigest) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user