func (p *parser) remove(i, length int) { if len(p.format) > i+length { //append(a[:i], a[j:]...) p.format = append(p.format[0:i], p.format[i+length:]...) } if len(p.datestr) > i+length { //append(a[:i], a[j:]...) p.datestr = fmt.Sprintf("%s%s", p.datestr[0:i], p.datestr[i+length:]) } }
()
source not stored for this graph (policy: none)
no test coverage detected