remove println

This commit is contained in:
Joel Wetzell
2026-01-31 16:05:29 -06:00
parent 4485ba3107
commit f63b8886ce
-2
View File
@@ -3,7 +3,6 @@ package artnet
import (
"encoding/binary"
"errors"
"fmt"
"slices"
)
@@ -46,7 +45,6 @@ func (atc *ArtTimeCode) GetID() []uint8 {
}
func (atc *ArtTimeCode) UnmarshalBinary(data []byte) error {
fmt.Println(data)
if len(data) < 14 {
return errors.New("ArtTimeCode packet must be at least 14 bytes long")
}