fs: remove unused default option in WriteStream

No bufferSize option is used in stream.Writable and fs.WriteStream.
This commit is contained in:
Shigeki Ohtsu 2013-01-05 01:46:59 +09:00 committed by Ben Noordhuis
parent 829f96bada
commit 2b6c561040

View File

@ -1559,7 +1559,6 @@ function WriteStream(path, options) {
// a little bit bigger buffer and water marks by default
options = util._extend({
bufferSize: 64 * 1024,
lowWaterMark: 16 * 1024,
highWaterMark: 64 * 1024
}, options || {});