remove whitespace

This commit is contained in:
Ryan Dahl 2010-03-15 09:02:52 -07:00
parent d96c52694a
commit 1256df76bc

View File

@ -42,7 +42,7 @@ node.dns.createConnection = removed("node.dns.createConnection() has moved. Use
/**********************************************************************/
// Module
// Module
var internalModuleCache = {};
var extensionCache = {};
@ -351,7 +351,7 @@ process.fs.readFile = function (path, encoding_, callback) {
var callback = (typeof(callback_) == 'function' ? callback_ : null);
process.fs.open(path, process.O_RDONLY, 0666, function (err, fd) {
if (err) {
if (callback) callback(err);
if (callback) callback(err);
} else {
readAll(fd, 0, "", encoding, callback);
}