From 09acc100b6f38c5edba529f5d54deb6f6d3b69f7 Mon Sep 17 00:00:00 2001 From: Iris Grace Endozo Date: Tue, 13 Oct 2020 14:30:02 +1100 Subject: [PATCH] Delete unused Message struct (#3) Co-authored-by: Iris Grace Endozo --- exporter/kinesisexporter/marshaller.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/exporter/kinesisexporter/marshaller.go b/exporter/kinesisexporter/marshaller.go index 3799a0fe4c1d..a701db328b81 100644 --- a/exporter/kinesisexporter/marshaller.go +++ b/exporter/kinesisexporter/marshaller.go @@ -27,11 +27,6 @@ type Marshaller interface { Encoding() string } -// Message encapsulates Kinesis' message payload. -type Message struct { - Value []byte -} - // defaultMarshallers returns map of supported encodings with Marshaller. func defaultMarshallers() map[string]Marshaller { otlp := &otlpProtoMarshaller{}