Skip to content

Commit

Permalink
remove params
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Jun 17, 2020
1 parent 0a4ef7b commit 3ef3e26
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/apm/src/integrations/tracing.ts
Expand Up @@ -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 {
Expand Down
1 change: 0 additions & 1 deletion packages/react/src/profiler.tsx
Expand Up @@ -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) {
Expand Down

0 comments on commit 3ef3e26

Please sign in to comment.