Rabbit-R1/switch port/java/sources/com/airbnb/lottie/parser/PathParser.java

20 lines
588 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package com.airbnb.lottie.parser;
import android.graphics.PointF;
import com.airbnb.lottie.parser.moshi.JsonReader;
import java.io.IOException;
/* loaded from: classes2.dex */
public class PathParser implements ValueParser<PointF> {
public static final PathParser INSTANCE = new PathParser();
private PathParser() {
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // com.airbnb.lottie.parser.ValueParser
public PointF parse(JsonReader jsonReader, float f) throws IOException {
return JsonUtils.jsonToPoint(jsonReader, f);
}
}