Merge "[CB13] Remove an unused method."

main
Jean Chalard 2014-03-24 10:22:18 +00:00 committed by Android (Google) Code Review
commit a17195224b
1 changed files with 0 additions and 7 deletions

View File

@ -167,13 +167,6 @@ public final class WordComposer {
return mPrimaryKeyCodes[index];
}
public int getCodeBeforeCursor() {
if (mCursorPositionWithinWord < 1 || mCursorPositionWithinWord > mPrimaryKeyCodes.length) {
return Constants.NOT_A_CODE;
}
return mPrimaryKeyCodes[mCursorPositionWithinWord - 1];
}
public InputPointers getInputPointers() {
return mInputPointers;
}