Remove BOM from SkFontHost_FreeType.cpp.
authorbungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Jan 2014 20:33:09 +0000 (20:33 +0000)
committerbungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Jan 2014 20:33:09 +0000 (20:33 +0000)
commitfe755b47052bc5bdf8a32e1e21f8dd81ba44d2e8
treed9708013641710f42a1bd9b4991fe98bf360e9a8
parent04bfdc39a7e42bb8af04533cd4ddec236d75c898
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
src/ports/SkFontHost_FreeType.cpp