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
Родитель b248dd5294
Коммит eebe6f4a59
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -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);
}

Просмотреть файл

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