Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@9992 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/utils/SkLua.cpp b/src/utils/SkLua.cpp
index 658b43b..944b12a 100644
--- a/src/utils/SkLua.cpp
+++ b/src/utils/SkLua.cpp
@@ -610,7 +610,7 @@
 
 static int lpaint_getEffects(lua_State* L) {
     const SkPaint* paint = get_obj<SkPaint>(L, 1);
-    
+
     lua_newtable(L);
     setfield_bool_if(L, "looper", !!paint->getLooper());
     setfield_bool_if(L, "pathEffect", !!paint->getPathEffect());
@@ -655,7 +655,7 @@
 
 static int lmatrix_getType(lua_State* L) {
     SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType();
-    
+
     lua_newtable(L);
     setfield_boolean(L, "translate",   SkToBool(mask & SkMatrix::kTranslate_Mask));
     setfield_boolean(L, "scale",       SkToBool(mask & SkMatrix::kScale_Mask));