18 lines
519 B
Java
18 lines
519 B
Java
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;
|
|
}
|
|
}
|