Remove error return from ToSliceOfSliceOfStrings method in tag encoder and bump version to v0.10.4
Some checks failed
Go / build (push) Has been cancelled

This commit is contained in:
2025-10-07 15:38:46 +01:00
parent dbdc5d703e
commit 7c14c72e9d
2 changed files with 2 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ func (s *S) GetTagElement(i int) (t *T) {
//
// Iterates through each tag in the collection and converts its byte elements
// to strings, preserving the tag structure in the resulting nested slice.
func (s *S) ToSliceOfSliceOfStrings() (ss [][]string, err error) {
func (s *S) ToSliceOfSliceOfStrings() (ss [][]string) {
for _, v := range *s {
ss = append(ss, v.ToSliceOfStrings())
}