Skip to content

Commit

Permalink
fixing contextName repetition in ottl (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhogayatakb committed Dec 4, 2024
1 parent ee6f3f0 commit 8f898bb
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkg/ottl/contexts/ottldatapoint/datapoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ const (
contextName = "DataPoint"
)

var (
_ internal.ResourceContext = (*TransformContext)(nil)
_ internal.InstrumentationScopeContext = (*TransformContext)(nil)
_ zapcore.ObjectMarshaler = (*TransformContext)(nil)
)
var _ internal.ResourceContext = (*TransformContext)(nil)
var _ internal.InstrumentationScopeContext = (*TransformContext)(nil)
var _ zapcore.ObjectMarshaler = (*TransformContext)(nil)

const (
contextName = "DataPoint"
)
Expand Down

0 comments on commit 8f898bb

Please sign in to comment.