Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -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) {
}
}