Merge "Add missing requestCursorUpdates to InputconnectionWrapper"

This commit is contained in:
Taran Singh
2023-02-01 07:50:40 +00:00
committed by Android (Google) Code Review

View File

@@ -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}.