Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Oct 31, 2024
1 parent b600742 commit 11b2e27
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/replay-internal/src/eventBuffer/EventBufferProxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ export class EventBufferProxy implements EventBuffer {
return this._used.waitForCheckout;
}

/** @inheritdoc */
public set waitForCheckout(value: boolean) {
this._used.waitForCheckout = value;
}

/** @inheritdoc */
public get type(): EventBufferType {
return this._used.type;
Expand All @@ -54,6 +49,11 @@ export class EventBufferProxy implements EventBuffer {
this._used.hasCheckout = value;
}

/** @inheritdoc */
public set waitForCheckout(value: boolean) {
this._used.waitForCheckout = value;
}

/** @inheritDoc */
public destroy(): void {
this._fallback.destroy();
Expand Down

0 comments on commit 11b2e27

Please sign in to comment.