Remove a useless IPC call.
This is not useful because we're going to call setSelection again with different values on the connection right away. Also a preliminary change for Bug: 10792236 Change-Id: I46c6ef1fbb3624086099bf81afddb0ef5ae85661
This commit is contained in:
parent
d823988b53
commit
27d78643e8
1 changed files with 0 additions and 1 deletions
|
@ -2305,7 +2305,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||||
if (!mRecapitalizeStatus.isSetAt(mLastSelectionStart, mLastSelectionEnd)) {
|
if (!mRecapitalizeStatus.isSetAt(mLastSelectionStart, mLastSelectionEnd)) {
|
||||||
mLastSelectionStart = mRecapitalizeStatus.getNewCursorStart();
|
mLastSelectionStart = mRecapitalizeStatus.getNewCursorStart();
|
||||||
mLastSelectionEnd = mRecapitalizeStatus.getNewCursorEnd();
|
mLastSelectionEnd = mRecapitalizeStatus.getNewCursorEnd();
|
||||||
mConnection.setSelection(mLastSelectionStart, mLastSelectionEnd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mRecapitalizeStatus.rotate();
|
mRecapitalizeStatus.rotate();
|
||||||
|
|
Loading…
Reference in a new issue