Skip to content

Commit 5d06740

Browse files
committed
utils/Minify.js: removed unused parameter "redirectCount" in requestURI()
Found by the Typescript compiler when doing an experimental conversion.
1 parent b2d00ae commit 5d06740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/utils/Minify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ for (var key in tar) {
7070

7171
// What follows is a terrible hack to avoid loop-back within the server.
7272
// TODO: Serve files from another service, or directly from the file system.
73-
function requestURI(url, method, headers, callback, redirectCount) {
73+
function requestURI(url, method, headers, callback) {
7474
var parsedURL = urlutil.parse(url);
7575

7676
var status = 500, headers = {}, content = [];

0 commit comments

Comments
 (0)