Skip to content

Commit b5fc830

Browse files
authored
Fix outdated readme and remove outdated experimental comments (#1383)
1 parent ab7b7c9 commit b5fc830

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

dart/lib/src/sentry_options.dart

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,12 @@ class SentryOptions {
7171
}
7272

7373
/// Maximum number of spans that can be attached to single transaction.
74-
///
75-
/// The is an experimental feature. Use at your own risk.
7674
int _maxSpans = 1000;
7775

7876
/// 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.
8177
int get maxSpans => _maxSpans;
8278

8379
/// 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.
8680
set maxSpans(int maxSpans) {
8781
assert(maxSpans > 0);
8882
_maxSpans = maxSpans;

flutter/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ runApp(
101101

102102
This adds performance tracing for all `AssetBundle` usages, where the `AssetBundle` is accessed with `DefaultAssetBunlde.of(context)`.
103103
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.
106104

107105
##### Tracking HTTP events
108106

0 commit comments

Comments
 (0)