From 823598ac7b14830bace5f6700006663d8c497035 Mon Sep 17 00:00:00 2001 From: Martin Haintz Date: Fri, 15 Nov 2024 11:24:52 +0100 Subject: [PATCH] rearrange imports --- flutter/lib/src/integrations/screenshot_integration.dart | 2 +- flutter/lib/src/replay/scheduled_recorder.dart | 2 +- flutter/lib/src/sentry_flutter_options.dart | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flutter/lib/src/integrations/screenshot_integration.dart b/flutter/lib/src/integrations/screenshot_integration.dart index 37fa4ab12d..da356eac65 100644 --- a/flutter/lib/src/integrations/screenshot_integration.dart +++ b/flutter/lib/src/integrations/screenshot_integration.dart @@ -3,7 +3,7 @@ import '../event_processor/screenshot_event_processor.dart'; import '../sentry_flutter_options.dart'; /// Adds [ScreenshotEventProcessor] to options event processors if -/// [SentryFlutterOptions.screenshot.attachScreenshot] is true +/// [SentryFlutterOptions.screenshot.attach] is true class ScreenshotIntegration implements Integration { SentryFlutterOptions? _options; ScreenshotEventProcessor? _screenshotEventProcessor; diff --git a/flutter/lib/src/replay/scheduled_recorder.dart b/flutter/lib/src/replay/scheduled_recorder.dart index a8a29a276f..70d8ff390c 100644 --- a/flutter/lib/src/replay/scheduled_recorder.dart +++ b/flutter/lib/src/replay/scheduled_recorder.dart @@ -2,10 +2,10 @@ import 'dart:async'; import 'dart:ui'; import 'package:meta/meta.dart'; -import 'scheduled_recorder_config.dart'; import '../../sentry_flutter.dart'; import '../screenshot/recorder.dart'; +import 'scheduled_recorder_config.dart'; import 'scheduler.dart'; @internal diff --git a/flutter/lib/src/sentry_flutter_options.dart b/flutter/lib/src/sentry_flutter_options.dart index 4e95d0bebe..395e4cf64f 100644 --- a/flutter/lib/src/sentry_flutter_options.dart +++ b/flutter/lib/src/sentry_flutter_options.dart @@ -4,13 +4,13 @@ import 'package:flutter/services.dart'; import 'package:meta/meta.dart' as meta; import 'package:sentry/sentry.dart'; import 'package:flutter/widgets.dart'; -import 'sentry_privacy_options.dart'; import 'binding_wrapper.dart'; import 'navigation/time_to_display_tracker.dart'; import 'renderer/renderer.dart'; import 'screenshot/sentry_screenshot_quality.dart'; import 'sentry_flutter.dart'; +import 'sentry_privacy_options.dart'; import 'sentry_replay_options.dart'; import 'sentry_screenshot_options.dart'; import 'user_interaction/sentry_user_interaction_widget.dart';