Skip to content

Commit 62624bd

Browse files
authored
fix(types): Remove redundant implementee (#2951)
The `Span` interface extends the `SpanContext` interface, so anything in the latter is definitely in the former. Therefore, implementing the "superset" interface is sufficient.
1 parent 5ac0fca commit 62624bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tracing/src/span.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class SpanRecorder {
3737
/**
3838
* Span contains all data about a span
3939
*/
40-
export class Span implements SpanInterface, SpanContext {
40+
export class Span implements SpanInterface {
4141
/**
4242
* @inheritDoc
4343
*/

0 commit comments

Comments
 (0)