From bded22503635541966f41f7a32576e94b562e880 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 12 Jul 2023 12:33:38 -0700 Subject: [PATCH 1/2] Correct sorting of import starting with dot-slash --- packages/cross_file/lib/src/types/html.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cross_file/lib/src/types/html.dart b/packages/cross_file/lib/src/types/html.dart index 97ee1666607..c4ab19bee8e 100644 --- a/packages/cross_file/lib/src/types/html.dart +++ b/packages/cross_file/lib/src/types/html.dart @@ -9,8 +9,8 @@ import 'dart:typed_data'; import 'package:meta/meta.dart'; -import './base.dart'; import '../web_helpers/web_helpers.dart'; +import './base.dart'; // Four Gigabytes, in bytes. const int _fourGigabytes = 4 * 1024 * 1024 * 1024; From 26a07218d1cb5084f6cdfa4de5757597ea56e3f9 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 12 Jul 2023 12:37:19 -0700 Subject: [PATCH 2/2] remove the dot --- packages/cross_file/lib/src/types/html.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cross_file/lib/src/types/html.dart b/packages/cross_file/lib/src/types/html.dart index c4ab19bee8e..7f5a1e5396a 100644 --- a/packages/cross_file/lib/src/types/html.dart +++ b/packages/cross_file/lib/src/types/html.dart @@ -10,7 +10,7 @@ import 'dart:typed_data'; import 'package:meta/meta.dart'; import '../web_helpers/web_helpers.dart'; -import './base.dart'; +import 'base.dart'; // Four Gigabytes, in bytes. const int _fourGigabytes = 4 * 1024 * 1024 * 1024;