Bug 562310 followup: remove whitespace on empty lines, in nsCharSeparatedTokenizer.h. (whitespace-only changes)

This commit is contained in:
Daniel Holbert 2010-05-04 07:43:48 -07:00
parent 4d7b4ac88a
commit d4bf1daecc

View File

@ -144,7 +144,7 @@ public:
++mIter;
}
}
return Substring(begin, end);
}
@ -204,7 +204,7 @@ public:
++mIter;
}
}
// Skip separator (and any whitespace after it).
if (mIter != mEnd) {
NS_ASSERTION(*mIter == mSeparatorChar, "Ended loop too soon");
@ -214,7 +214,7 @@ public:
++mIter;
}
}
return Substring(begin, end);
}