Skip to content
Snippets Groups Projects
Commit 2db9e1c4 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix typo in method name

This is a follow up of I6f851248.

Change-Id: I3fe17f3c81ed35e7c38ac9701e73c6b2c1ca8d63
parent ee71ecf5
No related branches found
No related tags found
No related merge requests found
...@@ -369,13 +369,13 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack ...@@ -369,13 +369,13 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack
} }
@Override @Override
public void cancelAllUpdateBatchInputTimer() { public void cancelAllUpdateBatchInputTimers() {
removeMessages(MSG_UPDATE_BATCH_INPUT); removeMessages(MSG_UPDATE_BATCH_INPUT);
} }
public void cancelAllMessages() { public void cancelAllMessages() {
cancelKeyTimers(); cancelKeyTimers();
cancelAllUpdateBatchInputTimer(); cancelAllUpdateBatchInputTimers();
} }
} }
......
...@@ -95,7 +95,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element { ...@@ -95,7 +95,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
public boolean isInDoubleTapTimeout(); public boolean isInDoubleTapTimeout();
public void cancelKeyTimers(); public void cancelKeyTimers();
public void startUpdateBatchInputTimer(PointerTracker tracker); public void startUpdateBatchInputTimer(PointerTracker tracker);
public void cancelAllUpdateBatchInputTimer(); public void cancelAllUpdateBatchInputTimers();
public static class Adapter implements TimerProxy { public static class Adapter implements TimerProxy {
@Override @Override
...@@ -121,7 +121,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element { ...@@ -121,7 +121,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
@Override @Override
public void startUpdateBatchInputTimer(PointerTracker tracker) {} public void startUpdateBatchInputTimer(PointerTracker tracker) {}
@Override @Override
public void cancelAllUpdateBatchInputTimer() {} public void cancelAllUpdateBatchInputTimers() {}
} }
} }
...@@ -754,7 +754,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element { ...@@ -754,7 +754,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
Log.d(TAG, String.format("[%d] onEndBatchInput : batchPoints=%d", Log.d(TAG, String.format("[%d] onEndBatchInput : batchPoints=%d",
mPointerId, sAggregratedPointers.getPointerSize())); mPointerId, sAggregratedPointers.getPointerSize()));
} }
mTimerProxy.cancelAllUpdateBatchInputTimer(); mTimerProxy.cancelAllUpdateBatchInputTimers();
mListener.onEndBatchInput(sAggregratedPointers); mListener.onEndBatchInput(sAggregratedPointers);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment