This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
packages/opencensus-core/src/trace/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ import * as uuid from 'uuid';
1818import * as types from './types' ;
1919import * as logger from '../../common/console-logger' ;
2020
21- import { SpanBaseModel } from './span-base-model ' ;
21+ import { SpanBase } from './span-base' ;
2222import { Clock } from '../../internal/clock' ;
2323import { Span } from './span' ;
2424
2525
2626/** Defines a root span */
27- export class RootSpan extends SpanBaseModel implements types . RootSpan {
27+ export class RootSpan extends SpanBase implements types . RootSpan {
2828 /** A tracer object */
2929 private tracer : types . Tracer ;
3030 /** A list of child spans. */
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {randomSpanId} from '../../internal/util';
2121
2222
2323/** Defines a base model for spans. */
24- export abstract class SpanBaseModel implements types . Span {
24+ export abstract class SpanBase implements types . Span {
2525 protected className : string ;
2626 /** The clock used to mesure the beginning and ending of a span */
2727 private clock : Clock = null ;
Original file line number Diff line number Diff line change 1717import * as types from './types' ;
1818import * as logger from '../../common/console-logger' ;
1919
20- import { SpanBaseModel } from './span-base-model ' ;
20+ import { SpanBase } from './span-base' ;
2121
2222
2323/** Defines a Span. */
24- export class Span extends SpanBaseModel implements types . Span {
24+ export class Span extends SpanBase implements types . Span {
2525
2626 private root : types . RootSpan ;
2727
You can’t perform that action at this time.
0 commit comments