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

Commit d838ca6b authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

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

parents 88a23f2f 242724ee
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";
        }
    }