Skip to content

Commit bceec4a

Browse files
committed
fix linters
1 parent 4be5973 commit bceec4a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

packages/profiling-node/src/integration.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class ContinuousProfiler {
137137
*/
138138
public start(): void {
139139
if (this._mode === 'current') {
140-
this.startProfiler();
140+
this._startProfiler();
141141
return;
142142
}
143143

@@ -171,7 +171,7 @@ class ContinuousProfiler {
171171
*/
172172
public stop(): void {
173173
if (this._mode === 'current') {
174-
this.stopProfiler();
174+
this._stopProfiler();
175175
return;
176176
}
177177

@@ -194,7 +194,7 @@ class ContinuousProfiler {
194194
this._teardownSpanChunkInstrumentation();
195195
}
196196

197-
private startProfiler(): void {
197+
private _startProfiler(): void {
198198
if (this._mode !== 'current') {
199199
DEBUG_BUILD && logger.log('[Profiling] Continuous profiling is not supported in the current mode.');
200200
return;
@@ -223,7 +223,7 @@ class ContinuousProfiler {
223223
this._startChunkProfiling();
224224
}
225225

226-
private stopProfiler(): void {
226+
private _stopProfiler(): void {
227227
if (this._mode !== 'current') {
228228
DEBUG_BUILD && logger.log('[Profiling] Continuous profiling is not supported in the current mode.');
229229
return;

packages/profiling-node/test/integration.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable deprecation/deprecation */
21
import * as Sentry from '@sentry/node';
32
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
43

0 commit comments

Comments
 (0)