package androidx.transition; import android.animation.ObjectAnimator; import android.animation.TypeConverter; import android.graphics.Path; import android.graphics.PointF; import android.util.Property; /* loaded from: classes2.dex */ class ObjectAnimatorUtils { /* JADX INFO: Access modifiers changed from: package-private */ public static ObjectAnimator ofPointF(T t, Property property, Path path) { return ObjectAnimator.ofObject(t, property, (TypeConverter) null, path); } private ObjectAnimatorUtils() { } }