diff options
| author | 2012-02-06 16:26:21 -0800 | |
|---|---|---|
| committer | 2012-02-13 10:28:40 -0800 | |
| commit | 28b5cf1c33df847d667b8974ba07c4157a49b48a (patch) | |
| tree | ca82ec2d78a7a5ebb5b80eeebcc6929db0dd761a /services/input/InputDispatcher.cpp | |
| parent | 59f1ff99786e9d4a94270d6752aa3ca61e10f0a6 (diff) | |
Delete dead code.
This is part of a series of changes to improve input system pipelining.
Bug: 5963420
Change-Id: I9f8b93f6a25ddd872f993366b57bab404c93bede
Diffstat (limited to 'services/input/InputDispatcher.cpp')
| -rw-r--r-- | services/input/InputDispatcher.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/services/input/InputDispatcher.cpp b/services/input/InputDispatcher.cpp index d923ec1c2071..436831f38d9f 100644 --- a/services/input/InputDispatcher.cpp +++ b/services/input/InputDispatcher.cpp @@ -3965,17 +3965,6 @@ const char* InputDispatcher::Connection::getStatusLabel() const { } } -InputDispatcher::DispatchEntry* InputDispatcher::Connection::findQueuedDispatchEntryForEvent( - const EventEntry* eventEntry) const { - for (DispatchEntry* dispatchEntry = outboundQueue.tail; dispatchEntry; - dispatchEntry = dispatchEntry->prev) { - if (dispatchEntry->eventEntry == eventEntry) { - return dispatchEntry; - } - } - return NULL; -} - // --- InputDispatcher::CommandEntry --- |