mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 13:59:26 +00:00
Merge pull request #14921 from egonelbre/megacheck_log
log: fix megacheck warnings
This commit is contained in:
commit
3991745c5f
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ func escapeString(s string) string {
|
||||||
needsEscape = true
|
needsEscape = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if needsEscape == false && needsQuotes == false {
|
if !needsEscape && !needsQuotes {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
e := stringBufPool.Get().(*bytes.Buffer)
|
e := stringBufPool.Get().(*bytes.Buffer)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue