From 3ef3e263a5e57fbb470d3ef31f3bc451511c53cd Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Wed, 17 Jun 2020 09:58:52 -0400 Subject: [PATCH] remove params --- packages/apm/src/integrations/tracing.ts | 1 - packages/react/src/profiler.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/apm/src/integrations/tracing.ts b/packages/apm/src/integrations/tracing.ts index a1267b306ec2..d97bb626d26f 100644 --- a/packages/apm/src/integrations/tracing.ts +++ b/packages/apm/src/integrations/tracing.ts @@ -820,7 +820,6 @@ export class Tracing implements Integration { * Removes activity and finishes the span in case there is one * @param id the id of the activity being removed * @param spanData span data that can be updated - * @param finish if a span should be finished after the activity is removed * */ public static popActivity(id: number, spanData?: { [key: string]: any }): void { diff --git a/packages/react/src/profiler.tsx b/packages/react/src/profiler.tsx index fa7649af71c4..5fab8b4c3cd3 100644 --- a/packages/react/src/profiler.tsx +++ b/packages/react/src/profiler.tsx @@ -52,7 +52,6 @@ function pushActivity(name: string, op: string): number | null { * popActivity removes a React activity. * Is a no-op if invalid Tracing integration or invalid activity id. * @param activity id of activity that is being popped - * @param finish if a span should be finished after the activity is removed */ function popActivity(activity: number | null): void { if (activity === null || globalTracingIntegration === null) {