aboutsummaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorJes Cok <xigua67damn@gmail.com>2025-02-20 15:10:06 +0000
committerGopher Robot <gobot@golang.org>2025-02-20 08:16:29 -0800
commit458ac1b01590506891b2ad2b300ead76aaa4e119 (patch)
tree2ba90e217671161cdb1bd6ec73251460310b11aa /src/context
parentb9630c56db42dd58fd7ce21ea854815d0ab31878 (diff)
downloadgo-458ac1b01590506891b2ad2b300ead76aaa4e119.tar.xz
context: replace newAfterFuncContext with a global declaration using blank identifier
newAfterFuncContext has never been used, the only reason I can imagine for its existence is to guarantee that the implementation is correct. It is a small cleanup and make code more idiomatic. Change-Id: I61ee213a9284f3c3bda7f91196f3a1604babd0f6 GitHub-Last-Rev: c08bd69ef3f0dbc2f573f54095fea35dad2b1145 GitHub-Pull-Request: golang/go#71856 Reviewed-on: https://go-review.googlesource.com/c/go/+/651015 Auto-Submit: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/context')
-rw-r--r--src/context/afterfunc_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/context/afterfunc_test.go b/src/context/afterfunc_test.go
index 7b75295eb4..c2ef1062d3 100644
--- a/src/context/afterfunc_test.go
+++ b/src/context/afterfunc_test.go
@@ -20,9 +20,7 @@ type afterFuncContext struct {
err error
}
-func newAfterFuncContext() context.Context {
- return &afterFuncContext{}
-}
+var _ context.Context = (*afterFuncContext)(nil)
func (c *afterFuncContext) Deadline() (time.Time, bool) {
return time.Time{}, false