Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 25 Oct 2012 02:01:20 +0000 (02:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 25 Oct 2012 02:01:20 +0000 (02:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@6088 2bbb7eff-a529-9590-31e7-b0007b416f81

tests/PathTest.cpp

index d13f3f6..e52296d 100644 (file)
@@ -28,7 +28,7 @@ static SkSurface* new_surface(int w, int h) {
 // Make sure we stay non-finite once we get there (unless we reset or rewind).
 static void test_addrect_isfinite(skiatest::Reporter* reporter) {
     SkPath path;
-    
+
     path.addRect(SkRect::MakeWH(50, 100));
     REPORTER_ASSERT(reporter, path.isFinite());
 
@@ -41,7 +41,7 @@ static void test_addrect_isfinite(skiatest::Reporter* reporter) {
 
     path.reset();
     REPORTER_ASSERT(reporter, path.isFinite());
-    
+
     path.addRect(SkRect::MakeWH(50, 100));
     REPORTER_ASSERT(reporter, path.isFinite());
 }