utils/Minify.js: removed unused parameter "redirectCount" in requestURI()

Found by the Typescript compiler when doing an experimental conversion.
pull/3587/head
muxator 2019-03-26 23:47:52 +01:00 committed by muxator
parent b2d00ae071
commit 5d067406b1
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ for (var key in tar) {
// What follows is a terrible hack to avoid loop-back within the server.
// TODO: Serve files from another service, or directly from the file system.
function requestURI(url, method, headers, callback, redirectCount) {
function requestURI(url, method, headers, callback) {
var parsedURL = urlutil.parse(url);
var status = 500, headers = {}, content = [];