Skip to content

Commit 02ce10e

Browse files
committed
use final in loop
1 parent d58258e commit 02ce10e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutter/lib/src/sentry_flutter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ mixin SentryFlutter {
222222
// ignore: invalid_use_of_internal_member
223223
final integrations = Sentry.currentHub.options.integrations
224224
.whereType<NativeAppStartIntegration>();
225-
for (var integration in integrations) {
225+
for (final integration in integrations) {
226226
integration.appStartEnd = appStartEnd;
227227
}
228228
}

0 commit comments

Comments
 (0)