From: Koichi Shiraishi Date: Wed, 28 Jul 2021 19:22:47 +0000 (+0900) Subject: runtime: remove unnecesarry newline on freeStackSpans X-Git-Tag: go1.18beta1~1580 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7b38dd8e255710721b7d843cddbbb46f50267aa5;p=gostls13.git runtime: remove unnecesarry newline on freeStackSpans Change-Id: I16a3241d8818c67922ddbf7830b8c2c5f317e1a7 Reviewed-on: https://go-review.googlesource.com/c/go/+/338209 Reviewed-by: Austin Clements Run-TryBot: Austin Clements Trust: Keith Randall --- diff --git a/src/runtime/stack.go b/src/runtime/stack.go index 54ad66dca2..368ad6efa4 100644 --- a/src/runtime/stack.go +++ b/src/runtime/stack.go @@ -1198,7 +1198,6 @@ func shrinkstack(gp *g) { // freeStackSpans frees unused stack spans at the end of GC. func freeStackSpans() { - // Scan stack pools for empty stack spans. for order := range stackpool { lock(&stackpool[order].item.mu)