Skip to content

Commit

Permalink
use final in loop
Browse files Browse the repository at this point in the history
  • Loading branch information
denrase committed Sep 17, 2024
1 parent d58258e commit 02ce10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flutter/lib/src/sentry_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ mixin SentryFlutter {
// ignore: invalid_use_of_internal_member
final integrations = Sentry.currentHub.options.integrations
.whereType<NativeAppStartIntegration>();
for (var integration in integrations) {
for (final integration in integrations) {
integration.appStartEnd = appStartEnd;

Check warning on line 226 in flutter/lib/src/sentry_flutter.dart

View check run for this annotation

Codecov / codecov/patch

flutter/lib/src/sentry_flutter.dart#L223-L226

Added lines #L223 - L226 were not covered by tests
}
}
Expand Down

0 comments on commit 02ce10e

Please sign in to comment.