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