mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
all: use bytes.Cut, strings.Cut
Many uses of Index/IndexByte/IndexRune/Split/SplitN can be written more clearly using the new Cut functions. Do that. Also rewrite to other functions if that's clearer. For #46336. Change-Id: I68d024716ace41a57a8bf74455c62279bde0f448 Reviewed-on: https://go-review.googlesource.com/c/go/+/351711 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
8b955cf4bb
commit
f9339c75b5
1 changed files with 5 additions and 5 deletions
|
@ -750,11 +750,11 @@ func parseCppContention(r *bytes.Buffer) (*Profile, error) {
|
|||
break
|
||||
}
|
||||
|
||||
attr := strings.SplitN(l, delimiter, 2)
|
||||
if len(attr) != 2 {
|
||||
key, val, ok := strings.Cut(l, delimiter)
|
||||
if !ok {
|
||||
break
|
||||
}
|
||||
key, val := strings.TrimSpace(attr[0]), strings.TrimSpace(attr[1])
|
||||
key, val = strings.TrimSpace(key), strings.TrimSpace(val)
|
||||
var err error
|
||||
switch key {
|
||||
case "cycles/second":
|
||||
|
@ -1050,8 +1050,8 @@ func (p *Profile) ParseMemoryMap(rd io.Reader) error {
|
|||
if err == errUnrecognized {
|
||||
// Recognize assignments of the form: attr=value, and replace
|
||||
// $attr with value on subsequent mappings.
|
||||
if attr := strings.SplitN(l, delimiter, 2); len(attr) == 2 {
|
||||
attrs = append(attrs, "$"+strings.TrimSpace(attr[0]), strings.TrimSpace(attr[1]))
|
||||
if attr, value, ok := strings.Cut(l, delimiter); ok {
|
||||
attrs = append(attrs, "$"+strings.TrimSpace(attr), strings.TrimSpace(value))
|
||||
r = strings.NewReplacer(attrs...)
|
||||
}
|
||||
// Ignore any unrecognized entries
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue