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

Commit aa126171 authored by Eric Fischer's avatar Eric Fischer
Browse files

Fix the build by removing @Override within javadoc comments.

Change-Id: I984cc6224185ab84e904bfc89eae80d567fcb59b
parent e4c53604
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -3545,7 +3545,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
     * Example: Adding formatted date string to an accessibility event in addition
     *          to the text added by the super implementation.
     * </p><p><pre><code>
     * @Override
     * public void onPopulateAccessibilityEvent(AccessibilityEvent event) {
     *     super.onPopulateAccessibilityEvent(event);
     *     final int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_WEEKDAY;
@@ -3573,7 +3572,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
     * Example: Setting the password property of an event in addition
     *          to properties set by the super implementation.
     * </p><p><pre><code>
     * @Override
     * public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
     *    super.onInitializeAccessibilityEvent(event);
     *    event.setPassword(true);