Skip to content

Commit

Permalink
change contains to equals
Browse files Browse the repository at this point in the history
  • Loading branch information
juschmitt-ioki committed Oct 21, 2024
1 parent 1c8b043 commit bc994da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ protected void onDraw(Canvas canvas) {
if (ROUNDABOUT_MANEUVER_TYPES.contains(maneuverType)) {
flip = STEP_MANEUVER_MODIFIER_LEFT.equals(drivingSide);
}
if (STEP_MANEUVER_MODIFIER_LEFT.equals(drivingSide) && STEP_MANEUVER_MODIFIER_UTURN.contains(maneuverModifier)) {
if (STEP_MANEUVER_MODIFIER_LEFT.equals(drivingSide) && STEP_MANEUVER_MODIFIER_UTURN.equals(maneuverModifier)) {
setScaleX(flip ? 1 : -1);
} else {
setScaleX(flip ? -1 : 1);
Expand Down

0 comments on commit bc994da

Please sign in to comment.