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

Commit 753f9b8b authored by Taran Singh's avatar Taran Singh Committed by Android (Google) Code Review
Browse files

Merge "Add missing requestCursorUpdates to InputconnectionWrapper"

parents acd2aabb a6ffae76
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -356,6 +356,16 @@ public class InputConnectionWrapper implements InputConnection {
        return mTarget.requestCursorUpdates(cursorUpdateMode);
    }

    /**
     * {@inheritDoc}
     * @throws NullPointerException if the target is {@code null}.
     */
    @Override
    public boolean requestCursorUpdates(@CursorUpdateMode int cursorUpdateMode,
            @CursorUpdateFilter int cursorUpdateFilter) {
        return mTarget.requestCursorUpdates(cursorUpdateMode, cursorUpdateFilter);
    }

    /**
     * {@inheritDoc}
     * @throws NullPointerException if the target is {@code null}.