blob: 8677035d071372ad6e239c8dae4c10562cedf3fa [file] [log] [blame]
package com.airbnb.lottie;
import android.graphics.PointF;
final class Utils {
private static PointF emptyPoint;
static PointF emptyPoint() {
if (emptyPoint == null) {
emptyPoint = new PointF();
}
return emptyPoint;
}
}