Ver Fonte

chore: check interface satisfaction w/o allocating new variable (#1454)

Letian Jiang há 3 anos atrás
pai
commit
ce05c429fc
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      core/trace/tracer.go

+ 1 - 1
core/trace/tracer.go

@@ -10,7 +10,7 @@ import (
 )
 
 // assert that metadataSupplier implements the TextMapCarrier interface
-var _ propagation.TextMapCarrier = new(metadataSupplier)
+var _ propagation.TextMapCarrier = (*metadataSupplier)(nil)
 
 type metadataSupplier struct {
 	metadata *metadata.MD