what-the-bank/sources/o/ZhI.java

18 lines
519 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.HashMap;
/* loaded from: classes.dex */
public final class ZhI {
public HashMap<Object, HashMap<String, float[]>> c = new HashMap<>();
public final float a(Object obj, String str) {
HashMap<String, float[]> hashMap;
float[] fArr;
if (this.c.containsKey(obj) && (hashMap = this.c.get(obj)) != null && hashMap.containsKey(str) && (fArr = hashMap.get(str)) != null && fArr.length > 0) {
return fArr[0];
}
return Float.NaN;
}
}