mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
11 lines
432 B
Java
11 lines
432 B
Java
package androidx.constraintlayout.solver;
|
|
|
|
import androidx.constraintlayout.solver.Pools;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Cache {
|
|
Pools.Pool<ArrayRow> optimizedArrayRowPool = new Pools.SimplePool(256);
|
|
Pools.Pool<ArrayRow> arrayRowPool = new Pools.SimplePool(256);
|
|
Pools.Pool<SolverVariable> solverVariablePool = new Pools.SimplePool(256);
|
|
SolverVariable[] mIndexedVariables = new SolverVariable[32];
|
|
}
|