Skip to content

Commit

Permalink
rearrange imports
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhaintz committed Nov 15, 2024
1 parent 8202004 commit 823598a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flutter/lib/src/integrations/screenshot_integration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
SentryFlutterOptions? _options;
ScreenshotEventProcessor? _screenshotEventProcessor;
Expand Down
2 changes: 1 addition & 1 deletion flutter/lib/src/replay/scheduled_recorder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion flutter/lib/src/sentry_flutter_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 823598a

Please sign in to comment.