Skip to content

Commit

Permalink
bugfix: ConstraintSettings.getControllerType() can return wrong values
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Nov 9, 2024
1 parent f3b0735 commit 50366f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public int getConstraintPriority() {
@Override
public int getControllerType() {
long settingsVa = va();
int result = getConstraintPriority(settingsVa);
int result = getControllerType(settingsVa);

return result;
}
Expand Down

0 comments on commit 50366f3

Please sign in to comment.