Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dead32cc authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am 28b5cf1c: Delete dead code.

* commit '28b5cf1c':
  Delete dead code.
parents 1863d69d 28b5cf1c
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -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 ---

+0 −4
Original line number Diff line number Diff line
@@ -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 {