From 567ff2f6143ecb993dbedede402a43feb71c420a Mon Sep 17 00:00:00 2001 From: tfarina Date: Mon, 27 Apr 2015 07:01:44 -0700 Subject: Cleanup: Remove unnecessary double-semicolons. The entries were found by the following command line: $ find . -regex ".*\.[cChH]\(pp\)?" | xargs git grep -e ';;' --and --not -e 'for *(.*;;' Which is a combination of http://stackoverflow.com/a/3858879 and http://gitster.livejournal.com/27674.html BUG=None R=mtklein@google.com Review URL: https://codereview.chromium.org/1088763005 --- gm/multipicturedraw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gm/multipicturedraw.cpp') diff --git a/gm/multipicturedraw.cpp b/gm/multipicturedraw.cpp index f31b698566..0e11b0653f 100644 --- a/gm/multipicturedraw.cpp +++ b/gm/multipicturedraw.cpp @@ -154,7 +154,7 @@ static const SkPicture* make_tri_picture() { SkPaint fill; fill.setStyle(SkPaint::kFill_Style); - fill.setColor(SK_ColorLTGRAY);; + fill.setColor(SK_ColorLTGRAY); SkPaint stroke; stroke.setStyle(SkPaint::kStroke_Style); -- cgit v1.2.3