aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/textblobtransforms.cpp
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-04-27 07:01:44 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-27 07:01:45 -0700
commit567ff2f6143ecb993dbedede402a43feb71c420a (patch)
treeb8bc1ea5fc362da369ba1868d4dca0312ec0a192 /gm/textblobtransforms.cpp
parent275231474528cbe42cb49b7e649fbbd6b92890af (diff)
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
Diffstat (limited to 'gm/textblobtransforms.cpp')
-rw-r--r--gm/textblobtransforms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gm/textblobtransforms.cpp b/gm/textblobtransforms.cpp
index 8347e9be60..d24e6e860e 100644
--- a/gm/textblobtransforms.cpp
+++ b/gm/textblobtransforms.cpp
@@ -32,7 +32,7 @@ protected:
SkRect bounds;
paint.measureText(text, strlen(text), &bounds);
- sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0);;
+ sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0);
// Medium
SkScalar xOffset = bounds.width() + 5;