Explorar el Código

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

Letian Jiang hace 3 años
padre
commit
ce05c429fc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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