We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b600742 commit 11b2e27Copy full SHA for 11b2e27
packages/replay-internal/src/eventBuffer/EventBufferProxy.ts
@@ -30,11 +30,6 @@ export class EventBufferProxy implements EventBuffer {
30
return this._used.waitForCheckout;
31
}
32
33
- /** @inheritdoc */
34
- public set waitForCheckout(value: boolean) {
35
- this._used.waitForCheckout = value;
36
- }
37
-
38
/** @inheritdoc */
39
public get type(): EventBufferType {
40
return this._used.type;
@@ -54,6 +49,11 @@ export class EventBufferProxy implements EventBuffer {
54
49
this._used.hasCheckout = value;
55
50
56
51
52
+ /** @inheritdoc */
53
+ public set waitForCheckout(value: boolean) {
+ this._used.waitForCheckout = value;
+ }
+
57
/** @inheritDoc */
58
public destroy(): void {
59
this._fallback.destroy();
0 commit comments