Remove titlecaseidentifier printf spam

This commit is contained in:
Patrick O'brien 2016-09-02 21:32:20 +10:00
parent cbee6db25b
commit 8f59486adc

View file

@ -298,7 +298,6 @@ func TitleCaseIdentifier(id string) string {
addDots := false addDots := false
for i := 0; nextDot >= 0; i++ { for i := 0; nextDot >= 0; i++ {
fmt.Println(lastDot, nextDot)
fragment := id[lastDot:nextDot] fragment := id[lastDot:nextDot]
titled := TitleCase(fragment) titled := TitleCase(fragment)