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

This commit is contained in:
Letian Jiang
2022-01-16 23:34:42 +08:00
committed by GitHub
parent 272a3f347d
commit ce05c429fc

View File

@@ -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