mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
22 lines
603 B
Java
22 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() {
|
||
|
}
|
||
|
}
|