fs: removing unnecessary nullCheckCallNT

`nullCheckCallNT()` function is not necessary, as we can directly pass
`callback` and `er` to `process.nextTick()`.

PR-URL: https://github.com/nodejs/io.js/pull/1870
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
pull/1890/merge
Sakthipriyan Vairamani 2015-06-02 20:45:21 +05:30 committed by Trevor Norris
parent 09f2a67bd8
commit 67a11b9bcc
1 changed files with 1 additions and 5 deletions

View File

@ -95,16 +95,12 @@ function nullCheck(path, callback) {
er.code = 'ENOENT';
if (typeof callback !== 'function')
throw er;
process.nextTick(nullCheckCallNT, callback, er);
process.nextTick(callback, er);
return false;
}
return true;
}
function nullCheckCallNT(callback, er) {
callback(er);
}
// Static method to set the stats properties on a Stats object.
fs.Stats = function(
dev,