We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173111f commit f129364Copy full SHA for f129364
serialization/serialization.go
@@ -47,6 +47,7 @@ func (f *Format) String() (text string) {
47
}
48
49
func (f *Format) stringParts() (parts []string) {
50
+ parts = make([]string, 0, len(f.Fields)*2+1)
51
parts = append(parts, fmt.Sprintf("Format (Size: %d, LastNonIgnorableField: %d)",
52
f.Size, f.LastNonIgnorableField))
53
0 commit comments