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