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

Commit 40fce329 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am d838ca6b: Merge "Add to string implementation for the new accessibility actions."

# Via Android (Google) Code Review (1) and Svetoslav Ganov (1)
* commit 'd838ca6b':
  Add to string implementation for the new accessibility actions.
parents b88dd64f d838ca6b
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -1914,8 +1914,16 @@ public class AccessibilityNodeInfo implements Parcelable {
                return "ACTION_SCROLL_FORWARD";
            case ACTION_SCROLL_BACKWARD:
                return "ACTION_SCROLL_BACKWARD";
            case ACTION_CUT:
                return "ACTION_CUT";
            case ACTION_COPY:
                return "ACTION_COPY";
            case ACTION_PASTE:
                return "ACTION_PASTE";
            case ACTION_SET_SELECTION:
                return "ACTION_SET_SELECTION";
            default:
                throw new IllegalArgumentException("Unknown action: " + action);
                return"ACTION_UNKNOWN";
        }
    }