Skip to content

Commit 11b2e27

Browse files
committed
lint
1 parent b600742 commit 11b2e27

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/replay-internal/src/eventBuffer/EventBufferProxy.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ export class EventBufferProxy implements EventBuffer {
3030
return this._used.waitForCheckout;
3131
}
3232

33-
/** @inheritdoc */
34-
public set waitForCheckout(value: boolean) {
35-
this._used.waitForCheckout = value;
36-
}
37-
3833
/** @inheritdoc */
3934
public get type(): EventBufferType {
4035
return this._used.type;
@@ -54,6 +49,11 @@ export class EventBufferProxy implements EventBuffer {
5449
this._used.hasCheckout = value;
5550
}
5651

52+
/** @inheritdoc */
53+
public set waitForCheckout(value: boolean) {
54+
this._used.waitForCheckout = value;
55+
}
56+
5757
/** @inheritDoc */
5858
public destroy(): void {
5959
this._fallback.destroy();

0 commit comments

Comments
 (0)