File tree Expand file tree Collapse file tree 2 files changed +0
-23
lines changed Expand file tree Collapse file tree 2 files changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -112,14 +112,6 @@ export class Scope implements ScopeInterface {
112
112
this . _propagationContext = generatePropagationContext ( ) ;
113
113
}
114
114
115
- /**
116
- * Inherit values from the parent scope.
117
- * @deprecated Use `scope.clone()` and `new Scope()` instead.
118
- */
119
- public static clone ( scope ?: Scope ) : Scope {
120
- return scope ? scope . clone ( ) : new Scope ( ) ;
121
- }
122
-
123
115
/**
124
116
* @inheritDoc
125
117
*/
@@ -469,16 +461,6 @@ export class Scope implements ScopeInterface {
469
461
return this ;
470
462
}
471
463
472
- /**
473
- * @inheritDoc
474
- * @deprecated Use `getScopeData()` instead.
475
- */
476
- public getAttachments ( ) : Attachment [ ] {
477
- const data = this . getScopeData ( ) ;
478
-
479
- return data . attachments ;
480
- }
481
-
482
464
/**
483
465
* @inheritDoc
484
466
*/
Original file line number Diff line number Diff line change @@ -206,11 +206,6 @@ export interface Scope {
206
206
*/
207
207
addAttachment ( attachment : Attachment ) : this;
208
208
209
- /**
210
- * Returns an array of attachments on the scope
211
- */
212
- getAttachments ( ) : Attachment [ ] ;
213
-
214
209
/**
215
210
* Clears attachments from the scope
216
211
*/
You can’t perform that action at this time.
0 commit comments