am 28b5cf1c: Delete dead code.

* commit '28b5cf1c33df847d667b8974ba07c4157a49b48a':
  Delete dead code.
This commit is contained in:
Jeff Brown
2012-02-13 10:31:21 -08:00
committed by Android Git Automerger
2 changed files with 0 additions and 15 deletions

View File

@@ -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 ---

View File

@@ -790,10 +790,6 @@ private:
inline const char* getInputChannelName() const { return inputChannel->getName().string(); }
const char* getStatusLabel() const;
// Finds a DispatchEntry in the outbound queue associated with the specified event.
// Returns NULL if not found.
DispatchEntry* findQueuedDispatchEntryForEvent(const EventEntry* eventEntry) const;
};
enum DropReason {