utils/Minify.js: removed unused parameter "redirectCount" in requestURI()
Found by the Typescript compiler when doing an experimental conversion.pull/3587/head
parent
b2d00ae071
commit
5d067406b1
|
@ -70,7 +70,7 @@ for (var key in tar) {
|
||||||
|
|
||||||
// What follows is a terrible hack to avoid loop-back within the server.
|
// 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.
|
// 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 parsedURL = urlutil.parse(url);
|
||||||
|
|
||||||
var status = 500, headers = {}, content = [];
|
var status = 500, headers = {}, content = [];
|
||||||
|
|
Loading…
Reference in New Issue