Skip to content

Commit

Permalink
frame: remove unused constant t1 used in UTF-8 decoding
Browse files Browse the repository at this point in the history
frame/utf8.go:11:2: `t1` is unused (deadcode)
	t1 = 0x00 // 0000 0000

Updates #25.
  • Loading branch information
mewmew committed May 27, 2018
1 parent 5955dc6 commit e6f4bf9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frame/utf8.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
)

const (
t1 = 0x00 // 0000 0000
tx = 0x80 // 1000 0000
t2 = 0xC0 // 1100 0000
t3 = 0xE0 // 1110 0000
Expand Down

0 comments on commit e6f4bf9

Please sign in to comment.