8000 remove unneeded imports (#190) · dart-archive/file.dart@0132eee · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Commit 0132eee

Browse files
authored
remove unneeded imports (#190)
1 parent b5672d9 commit 0132eee

File tree

6 files changed

+4
-10
lines changed

6 files changed

+4
-10
lines changed

packages/file/lib/src/backends/chroot.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import 'dart:typed_data';
99

1010
import 'package:file/file.dart';
1111
import 'package:file/src/common.dart' as common;
12-
import 'package:file/src/forwarding.dart';
1312
import 'package:file/src/io.dart' as io;
1413
import 'package:path/path.dart' as p;
1514

packages/file/lib/src/backends/local/local_directory.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
import 'package:file/file.dart';
56
import 'package:file/src/common.dart' as common;
6-
import 'package:file/src/forwarding.dart';
77
import 'package:file/src/io.dart' as io;
8-
import 'package:file/file.dart';
98

109
import 'local_file_system_entity.dart';
1110

packages/file/lib/src/backends/local/local_file.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'package:file/src/forwarding.dart';
6-
import 'package:file/src/io.dart' as io;
75
import 'package:file/file.dart';
6+
import 'package:file/src/io.dart' as io;
87

98
import 'local_file_system_entity.dart';
109

packages/file/lib/src/backends/local/local_file_system_entity.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'package:file/src/forwarding.dart';
6-
import 'package:file/src/io.dart' as io;
75
import 'package:file/file.dart';
6+
import 'package:file/src/io.dart' as io;
87

98
import 'local_directory.dart';
109
import 'local_file.dart';

packages/file/lib/src/backends/local/local_link.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'package:file/src/forwarding.dart';
6-
import 'package:file/src/io.dart' as io;
75
import 'package:file/file.dart';
6+
import 'package:file/src/io.dart' as io;
87

98
import 'local_file_system_entity.dart';
109

packages/file/test/memory_operations_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import 'package:file/file.dart';
66
import 'package:file/memory.dart';
7-
import 'package:file/src/interface/file.dart';
87
import 'package:test/test.dart';
98

109
void main() {

0 commit comments

Comments
 (0)
0