From 95c564792298d358fa1151e151761dd5ea045978 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Tue, 5 Apr 2022 16:57:23 -0400 Subject: [PATCH] feat(hub): Remove setTransaction scope method --- packages/hub/src/scope.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/hub/src/scope.ts b/packages/hub/src/scope.ts index 17ce4eef8458..ecd4c74d500e 100644 --- a/packages/hub/src/scope.ts +++ b/packages/hub/src/scope.ts @@ -223,14 +223,6 @@ export class Scope implements ScopeInterface { return this; } - /** - * Can be removed in major version. - * @deprecated in favor of {@link this.setTransactionName} - */ - public setTransaction(name?: string): this { - return this.setTransactionName(name); - } - /** * @inheritDoc */