mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
14 lines
435 B
Java
14 lines
435 B
Java
package androidx.constraintlayout.solver;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class GoalRow extends ArrayRow {
|
|
public GoalRow(Cache cache) {
|
|
super(cache);
|
|
}
|
|
|
|
@Override // androidx.constraintlayout.solver.ArrayRow, androidx.constraintlayout.solver.LinearSystem.Row
|
|
public void addError(SolverVariable solverVariable) {
|
|
super.addError(solverVariable);
|
|
solverVariable.usageInRowCount--;
|
|
}
|
|
}
|