Rabbit-R1/original r1/java/sources/androidx/constraintlayout/solver/GoalRow.java

15 lines
435 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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--;
}
}