frame: remove unused constant t1 used in UTF-8 decoding

frame/utf8.go:11:2: `t1` is unused (deadcode)
	t1 = 0x00 // 0000 0000

Updates #25.
This commit is contained in:
mewmew 2018-05-27 14:18:49 +02:00
parent 5955dc6a6b
commit e6f4bf95f2

View file

@ -8,7 +8,6 @@ import (
)
const (
t1 = 0x00 // 0000 0000
tx = 0x80 // 1000 0000
t2 = 0xC0 // 1100 0000
t3 = 0xE0 // 1110 0000