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