Remove some logging

This commit is contained in:
Aleksandras Kostarevas 2024-04-30 13:58:46 -04:00
parent 85de4c86d4
commit 57cb64f8bd
2 changed files with 1 additions and 3 deletions

View File

@ -588,9 +588,7 @@ public final class InputLogic {
*/ */
private int mAutoCommitSequenceNumber = 1; private int mAutoCommitSequenceNumber = 1;
public void onUpdateBatchInput(final InputPointers batchPointers) { public void onUpdateBatchInput(final InputPointers batchPointers) {
Log.d(TAG, "InputLogic has received batch input update, now we call for " + mInputLogicHandler.toString());
mInputLogicHandler.onUpdateBatchInput(batchPointers, mAutoCommitSequenceNumber); mInputLogicHandler.onUpdateBatchInput(batchPointers, mAutoCommitSequenceNumber);
Log.d(TAG, "Finished calling onUpddateBatchInput");
} }
public void onEndBatchInput(final InputPointers batchPointers) { public void onEndBatchInput(final InputPointers batchPointers) {

View File

@ -70,7 +70,7 @@ typedef std::pair<float, potential_sequence_data> potential_sequence;
typedef struct banned_sequence { typedef struct banned_sequence {
token_sequence sequence; token_sequence sequence;
int hash; int hash;
}; banned_sequence; } banned_sequence;
int compute_sequence_hash(const token_sequence &seq) { int compute_sequence_hash(const token_sequence &seq) {
int hash = 0; int hash = 0;