protected _removeFromQueue()

in src/SimpleWebRequest.ts [285:290]


    protected _removeFromQueue(): void {
        // Only pull from request queue and executing queue here - pulling from the blocked queue can result in requests
        // being queued up multiple times if _respond fires more than once (it shouldn't, but does happen in the wild)
        remove(executingList, this);
        remove(requestQueue, this);
    }