diff options
author | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-28 20:33:09 +0000 |
---|---|---|
committer | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-28 20:33:09 +0000 |
commit | fe755b47052bc5bdf8a32e1e21f8dd81ba44d2e8 (patch) | |
tree | d9708013641710f42a1bd9b4991fe98bf360e9a8 /src | |
parent | 04bfdc39a7e42bb8af04533cd4ddec236d75c898 (diff) |
Remove BOM from SkFontHost_FreeType.cpp.
With r12822 a UTF-8 BOM was added to SkFontHost_FreeType.cpp.
This change removes it.
Running
find . -type f \( -name '*.cpp' -o -name '*.h' \) -exec file {} \; | grep BOM
makes it look like this is the only file with a UTF-8 BOM at this time.
The BOM is easily removed with
tail -c +4 <filename>
R=rmistry@google.com
Review URL: https://codereview.chromium.org/141433025
git-svn-id: http://skia.googlecode.com/svn/trunk@13225 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r-- | src/ports/SkFontHost_FreeType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ports/SkFontHost_FreeType.cpp b/src/ports/SkFontHost_FreeType.cpp index 79520a8a03..fe32ebb42a 100644 --- a/src/ports/SkFontHost_FreeType.cpp +++ b/src/ports/SkFontHost_FreeType.cpp @@ -1,4 +1,4 @@ - + /* * Copyright 2006 The Android Open Source Project * |