Remove dead code.

This commit is contained in:
Richard Moore 2020-02-17 18:15:03 -05:00
parent 311af88cfa
commit 94db5dbdcf
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651

@ -79,8 +79,6 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
let allow304 = false;
let timeout = 2 * 60 * 1000;
let throttle = 25;
if (options.throttleLimit) { throttle = options.throttleLimit; }
if (typeof(connection) === "string") {
url = connection;
@ -156,9 +154,6 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
return { promise, cancel };
})();
if (throttle == 100) {
console.log(throttle);
}
const runningFetch = (async function() {