mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
21 lines
603 B
Java
21 lines
603 B
Java
package androidx.transition;
|
|
|
|
import android.graphics.Matrix;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class GhostViewUtils {
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static GhostView addGhost(View view, ViewGroup viewGroup, Matrix matrix) {
|
|
return GhostViewPort.addGhost(view, viewGroup, matrix);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static void removeGhost(View view) {
|
|
GhostViewPort.removeGhost(view);
|
|
}
|
|
|
|
private GhostViewUtils() {
|
|
}
|
|
}
|