Skip to content

Commit

Permalink
import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Dec 12, 2024
1 parent 0314343 commit 6c3c9a3
Show file tree
Hide file tree
Showing 20 changed files with 27 additions and 24 deletions.
3 changes: 2 additions & 1 deletion pkgs/file/lib/src/backends/chroot.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import 'dart:typed_data';

import 'package:path/path.dart' as p;

import '../../file.dart';
import '../common.dart' as common;
import '../forwarding.dart';
import '../interface.dart';
import '../io.dart' as io;

part 'chroot/chroot_directory.dart';
Expand Down
4 changes: 2 additions & 2 deletions pkgs/file/lib/src/backends/local/local_directory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../../file.dart';
import '../../common.dart' as common;
import '../../forwarding.dart';
import '../../interface.dart';
import '../../io.dart' as io;

import 'local_file_system_entity.dart';

/// [Directory] implementation that forwards all calls to `dart:io`.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/file/lib/src/backends/local/local_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../../file.dart';
import '../../forwarding.dart';
import '../../interface.dart';
import '../../io.dart' as io;

import 'local_file_system_entity.dart';

/// [File] implementation that forwards all calls to `dart:io`.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/local/local_file_system.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:path/path.dart' as p;

import '../../../file.dart';
import '../../interface.dart';
import '../../io.dart' as io;
import 'local_directory.dart';
import 'local_file.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../../file.dart';
import '../../forwarding.dart';
import '../../interface.dart';
import '../../io.dart' as io;

import 'local_directory.dart';
import 'local_file.dart';
import 'local_link.dart';
Expand Down
4 changes: 2 additions & 2 deletions pkgs/file/lib/src/backends/local/local_link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../../file.dart';
import '../../forwarding.dart';
import '../../interface.dart';
import '../../io.dart' as io;

import 'local_file_system_entity.dart';

/// [Link] implementation that forwards all calls to `dart:io`.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/memory_directory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import 'package:meta/meta.dart';

import '../../../file.dart';
import '../../common.dart' as common;
import '../../interface.dart';
import '../../io.dart' as io;
import 'common.dart';
import 'memory_file.dart';
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/memory_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import 'dart:typed_data';

import 'package:meta/meta.dart';

import '../../../file.dart';
import '../../common.dart' as common;
import '../../interface.dart';
import '../../io.dart' as io;
import 'common.dart';
import 'memory_file_system_entity.dart';
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/memory_file_system.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:path/path.dart' as p;

import '../../../file.dart';
import '../../interface.dart';
import '../../io.dart' as io;
import 'clock.dart';
import 'common.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import 'package:meta/meta.dart';

import '../../../file.dart';
import '../../common.dart' as common;
import '../../interface.dart';
import '../../io.dart' as io;
import 'common.dart';
import 'memory_directory.dart';
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/memory_link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import 'package:meta/meta.dart';

import '../../../file.dart';
import '../../common.dart' as common;
import '../../interface.dart';
import '../../io.dart' as io;
import 'memory_file_system_entity.dart';
import 'node.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import 'dart:convert';
import 'dart:math' as math show min;
import 'dart:typed_data';

import '../../../memory.dart' show MemoryFileSystem;
import '../../common.dart' as common;
import '../../io.dart' as io;
import '../memory.dart' show MemoryFileSystem;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/node.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'dart:typed_data';

import '../../../file.dart';
import '../../interface.dart';
import '../../io.dart' as io;
import 'clock.dart';
import 'common.dart';
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:path/path.dart' as p;

import '../../../file.dart';
import '../../interface.dart';

/// Class that represents the path style that a memory file system should
/// adopt.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/backends/memory/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../../file.dart';
import '../../common.dart' as common;
import '../../interface.dart';
import '../../io.dart' as io;
import 'common.dart';
import 'node.dart';
Expand Down
3 changes: 2 additions & 1 deletion pkgs/file/lib/src/forwarding/forwarding_directory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../file.dart';
import '../forwarding.dart';
import '../interface.dart';
import '../io.dart' as io;

/// A directory that forwards all methods and properties to a delegate.
Expand Down
3 changes: 2 additions & 1 deletion pkgs/file/lib/src/forwarding/forwarding_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import 'dart:convert';
import 'dart:typed_data';

import '../../file.dart';
import '../forwarding.dart';
import '../interface.dart';
import '../io.dart' as io;

/// A file that forwards all methods and properties to a delegate.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/file/lib/src/forwarding/forwarding_file_system.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import 'package:meta/meta.dart';
import 'package:path/path.dart' as p;

import '../../file.dart';
import '../interface.dart';
import '../io.dart' as io;

/// A file system that forwards all methods and properties to a delegate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import 'package:meta/meta.dart';

import '../../file.dart';
import '../interface.dart';
import '../io.dart' as io;

/// A file system entity that forwards all methods and properties to a delegate.
Expand Down
3 changes: 2 additions & 1 deletion pkgs/file/lib/src/forwarding/forwarding_link.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import '../../file.dart';
import '../forwarding.dart';
import '../interface.dart';
import '../io.dart' as io;

/// A link that forwards all methods and properties to a delegate.
Expand Down

0 comments on commit 6c3c9a3

Please sign in to comment.