Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@9826 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/core/SkBitmap.cpp b/src/core/SkBitmap.cpp
index beba9da..2635e13 100644
--- a/src/core/SkBitmap.cpp
+++ b/src/core/SkBitmap.cpp
@@ -776,7 +776,7 @@
             uint8_t* p = this->getAddr1(area.fLeft, area.fTop);
             const int left = area.fLeft >> 3;
             const int right = area.fRight >> 3;
-            
+
             int middle = right - left - 1;
 
             uint8_t leftMask = 0xFF >> (area.fLeft & 7);
@@ -799,7 +799,7 @@
                 if (rightMask) {
                     *p = (*p & ~rightMask) | (a & rightMask);
                 }
-                
+
                 p = startP + rowBytes;
             }
             break;