File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -71,18 +71,12 @@ class SentryOptions {
71
71
}
72
72
73
73
/// Maximum number of spans that can be attached to single transaction.
74
- ///
75
- /// The is an experimental feature. Use at your own risk.
76
74
int _maxSpans = 1000 ;
77
75
78
76
/// Returns the maximum number of spans that can be attached to single transaction.
79
- ///
80
- /// The is an experimental feature. Use at your own risk.
81
77
int get maxSpans => _maxSpans;
82
78
83
79
/// Sets the maximum number of spans that can be attached to single transaction.
84
- ///
85
- /// The is an experimental feature. Use at your own risk.
86
80
set maxSpans (int maxSpans) {
87
81
assert (maxSpans > 0 );
88
82
_maxSpans = maxSpans;
Original file line number Diff line number Diff line change @@ -101,8 +101,6 @@ runApp(
101
101
102
102
This adds performance tracing for all ` AssetBundle ` usages, where the ` AssetBundle ` is accessed with ` DefaultAssetBunlde.of(context) ` .
103
103
This includes all of Flutters internal access of ` AssetBundle ` s, like ` Image.asset ` for example.
104
- Tracing for ` AssetBundle.loadStructuredData() ` is currently disabled.
105
- It's hidden by the ` enableStructuredDataTracing ` flag and considered experimental. Using it could lead to bugs. We recognize the irony.
106
104
107
105
##### Tracking HTTP events
108
106
You can’t perform that action at this time.
0 commit comments