From b33fa08ebcee08810c690d699fa2d313b282f5bf Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Sun, 11 Jul 2021 22:56:02 -0700 Subject: [PATCH] Fix import order to unblock Dart roll (flutter/engine#27321) --- engine/src/flutter/ci/bin/format.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/ci/bin/format.dart b/engine/src/flutter/ci/bin/format.dart index 5741436b2f4..626a9231e07 100644 --- a/engine/src/flutter/ci/bin/format.dart +++ b/engine/src/flutter/ci/bin/format.dart @@ -16,8 +16,8 @@ import 'package:args/args.dart'; import 'package:isolate/isolate.dart'; import 'package:meta/meta.dart'; import 'package:path/path.dart' as path; -import 'package:process_runner/process_runner.dart'; import 'package:process/process.dart'; +import 'package:process_runner/process_runner.dart'; class FormattingException implements Exception { FormattingException(this.message, [this.result]);