From d4bf1daecc957b91f3c6467001c2dbf6b1be59be Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Tue, 4 May 2010 07:43:48 -0700 Subject: [PATCH] Bug 562310 followup: remove whitespace on empty lines, in nsCharSeparatedTokenizer.h. (whitespace-only changes) --- xpcom/ds/nsCharSeparatedTokenizer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xpcom/ds/nsCharSeparatedTokenizer.h b/xpcom/ds/nsCharSeparatedTokenizer.h index 67f9aeef006..73b270e47bb 100644 --- a/xpcom/ds/nsCharSeparatedTokenizer.h +++ b/xpcom/ds/nsCharSeparatedTokenizer.h @@ -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); }