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

Commit 8dbf0f9a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Simplify IInputMethodInvoker#updateEditorToolType() a bit"

parents eb66910b ccdc71e3
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -221,14 +221,12 @@ final class IInputMethodInvoker {
    }

    @AnyThread
    boolean updateEditorToolType(int toolType) {
    void updateEditorToolType(@MotionEvent.ToolType int toolType) {
        try {
            mTarget.updateEditorToolType(toolType);
        } catch (RemoteException e) {
            logRemoteException(e);
            return false;
        }
        return true;
    }

    @AnyThread