Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@9252 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/utils/SkLua.cpp b/src/utils/SkLua.cpp
index ca6f493..9aef50e 100644
--- a/src/utils/SkLua.cpp
+++ b/src/utils/SkLua.cpp
@@ -195,7 +195,7 @@
     SkASSERT(lua_istable(L, index));
     lua_pushstring(L, key);
     lua_gettable(L, index);
-    
+
     SkScalar value = lua2scalar(L, -1);
     lua_pop(L, 1);
     return value;
@@ -492,18 +492,18 @@
             int t = lua_type(L, -1);
             SkDebugf("--- expected function %d\n", t);
         }
-        
+
         lua_newtable(L);
         setfield_string(L, "verb", verb);
     }
-    
+
     ~AutoCallLua() {
         if (lua_pcall(fL, 1, 0, 0) != LUA_OK) {
             SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
         }
         lua_settop(fL, -1);
     }
-    
+
 private:
     lua_State* fL;
 };
@@ -563,4 +563,3 @@
     REG_CLASS(L, SkPaint);
     REG_CLASS(L, SkRRect);
 }
-