Bug 1800397: Remove dead code from nsSegmentedBuffer::Init. r=xpcom-reviewers,mccr8

Differential Revision: https://phabricator.services.mozilla.com/D161966
This commit is contained in:
Daniel Holbert 2022-11-14 23:22:18 +00:00
parent f5a61a896b
commit 8d586270bc

View File

@ -16,11 +16,7 @@ nsresult nsSegmentedBuffer::Init(uint32_t aSegmentSize, uint32_t aMaxSize) {
}
mSegmentSize = aSegmentSize;
mMaxSize = aMaxSize;
#if 0 // testing...
mSegmentArrayCount = 2;
#else
mSegmentArrayCount = NS_SEGMENTARRAY_INITIAL_COUNT;
#endif
return NS_OK;
}