Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@10122 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2013-07-17 07:01:13 +00:00
parent b248dd5294
commit eebe6f4a59
2 changed files with 2 additions and 3 deletions

View File

@ -68,7 +68,7 @@ bool ValidPoint(const SkDPoint& pt) {
if (SkDoubleIsNaN(pt.fX)) {
return false;
}
return !SkDoubleIsNaN(pt.fY);
return !SkDoubleIsNaN(pt.fY);
}
bool ValidPoints(const SkPoint* pts, int count) {
@ -105,5 +105,5 @@ bool ValidVector(const SkDVector& v) {
if (SkDoubleIsNaN(v.fX)) {
return false;
}
return !SkDoubleIsNaN(v.fY);
return !SkDoubleIsNaN(v.fY);
}

View File

@ -334,4 +334,3 @@ sk_tools::PictureRenderer* parseRenderer(SkString& error, PictureTool tool) {
return renderer.detach();
}