Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03e53b4a authored by Karl Rosaen's avatar Karl Rosaen Committed by The Android Open Source Project
Browse files

am 61ab270c: Add missing \'break\'s in switch statement, fixing bug 1876430

Merge commit '61ab270c'

* commit '61ab270c':
  Add missing 'break's in switch statement, fixing bug 1876430
parents 6922f19d 61ab270c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1934,11 +1934,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
                        viewFlagValues &= ~SOUND_EFFECTS_ENABLED;
                        viewFlagMasks |= SOUND_EFFECTS_ENABLED;
                    }
                    break;
                case com.android.internal.R.styleable.View_hapticFeedbackEnabled:
                    if (!a.getBoolean(attr, true)) {
                        viewFlagValues &= ~HAPTIC_FEEDBACK_ENABLED;
                        viewFlagMasks |= HAPTIC_FEEDBACK_ENABLED;
                    }
                    break;
                case R.styleable.View_scrollbars:
                    final int scrollbars = a.getInt(attr, SCROLLBARS_NONE);
                    if (scrollbars != SCROLLBARS_NONE) {