Skip to content

Commit 3ef3e26

Browse files
committed
remove params
1 parent 0a4ef7b commit 3ef3e26

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/apm/src/integrations/tracing.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,6 @@ export class Tracing implements Integration {
820820
* Removes activity and finishes the span in case there is one
821821
* @param id the id of the activity being removed
822822
* @param spanData span data that can be updated
823-
* @param finish if a span should be finished after the activity is removed
824823
*
825824
*/
826825
public static popActivity(id: number, spanData?: { [key: string]: any }): void {

packages/react/src/profiler.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ function pushActivity(name: string, op: string): number | null {
5252
* popActivity removes a React activity.
5353
* Is a no-op if invalid Tracing integration or invalid activity id.
5454
* @param activity id of activity that is being popped
55-
* @param finish if a span should be finished after the activity is removed
5655
*/
5756
function popActivity(activity: number | null): void {
5857
if (activity === null || globalTracingIntegration === null) {

0 commit comments

Comments
 (0)