Remove extra class names to address Neil's comments. b=378514

This commit is contained in:
dbaron@dbaron.org 2007-05-03 16:07:26 -07:00
Родитель c05388824d
Коммит ca87aeb5ac
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -392,11 +392,11 @@ public:
{
}
EdgePool::Iterator Mark() { return EdgePool::Iterator(mCurrent); }
Iterator Mark() { return Iterator(mCurrent); }
void Add(PtrInfo* aEdge) {
if (mCurrent == mBlockEnd) {
EdgePool::Block *b = new EdgePool::Block();
Block *b = new Block();
if (!b) {
// This means we just won't collect (some) cycles.
NS_NOTREACHED("out of memory, ignoring edges");
@ -412,7 +412,7 @@ public:
private:
// mBlockEnd points to space for null sentinel
PtrInfoOrBlock *mCurrent, *mBlockEnd;
EdgePool::Block **mNextBlockPtr;
Block **mNextBlockPtr;
};
};