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

Commit fe2e800

Browse files
authored
bump lints dep and fix (#344)
1 parent 4718398 commit fe2e800

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

lib/algorithms.dart

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

55
/// Import `collection.dart` instead.
66
@Deprecated('Will be removed in collection 2.0.0.')
7-
library dart.pkg.collection.algorithms;
7+
library;
88

99
export 'src/algorithms.dart'
1010
show binarySearch, insertionSort, lowerBound, mergeSort, reverse, shuffle;

lib/equality.dart

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

55
/// Import `collection.dart` instead.
66
@Deprecated('Will be removed in collection 2.0.0.')
7-
library dart.pkg.collection.equality;
7+
library;
88

99
export 'src/equality.dart';

lib/iterable_zip.dart

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

55
/// Import `collection.dart` instead.
66
@Deprecated('Will be removed in collection 2.0.0.')
7-
library dart.pkg.collection.iterable_zip;
7+
library;
88

99
export 'src/iterable_zip.dart';

lib/priority_queue.dart

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

55
/// Import `collection.dart` instead.
66
@Deprecated('Will be removed in collection 2.0.0.')
7-
library dart.pkg.collection.priority_queue;
7+
library;
88

99
export 'src/priority_queue.dart';

lib/src/algorithms.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// A selection of data manipulation algorithms.
6-
library pkg.collection.algorithms;
6+
library;
77

88
import 'dart:math' show Random;
99

lib/wrappers.dart

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

55
/// Import `collection.dart` instead.
66
@Deprecated('Will be removed in collection 2.0.0.')
7-
library dart.pkg.collection.wrappers;
7+
library;
88

99
export 'src/canonicalized_map.dart';
1010
export 'src/unmodifiable_wrappers.dart';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ environment:
1212
sdk: ^3.1.0
1313

1414
dev_dependencies:
15-
dart_flutter_team_lints: ^2.0.0
15+
dart_flutter_team_lints: ^3.0.0
1616
test: ^1.16.0

0 commit comments

Comments
 (0)