Clean up unnecessary garbage

This commit is contained in:
Tnze
2023-04-16 21:14:29 +08:00
parent 7bef059b44
commit 90737d09e4
2 changed files with 6 additions and 10 deletions

View File

@ -21,13 +21,8 @@ const (
TagCompound
TagIntArray
TagLongArray
TagNone = 0xFF
)
func IsArrayTag(ty byte) bool {
return ty == TagByteArray || ty == TagIntArray || ty == TagLongArray
}
type DecoderReader = interface {
io.ByteReader
io.Reader