Skip to content

Commit

Permalink
bump lints dep and fix (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed May 28, 2024
1 parent 4718398 commit fe2e800
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/algorithms.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/// Import `collection.dart` instead.
@Deprecated('Will be removed in collection 2.0.0.')
library dart.pkg.collection.algorithms;
library;

export 'src/algorithms.dart'
show binarySearch, insertionSort, lowerBound, mergeSort, reverse, shuffle;
2 changes: 1 addition & 1 deletion lib/equality.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

/// Import `collection.dart` instead.
@Deprecated('Will be removed in collection 2.0.0.')
library dart.pkg.collection.equality;
library;

export 'src/equality.dart';
2 changes: 1 addition & 1 deletion lib/iterable_zip.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

/// Import `collection.dart` instead.
@Deprecated('Will be removed in collection 2.0.0.')
library dart.pkg.collection.iterable_zip;
library;

export 'src/iterable_zip.dart';
2 changes: 1 addition & 1 deletion lib/priority_queue.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

/// Import `collection.dart` instead.
@Deprecated('Will be removed in collection 2.0.0.')
library dart.pkg.collection.priority_queue;
library;

export 'src/priority_queue.dart';
2 changes: 1 addition & 1 deletion lib/src/algorithms.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// A selection of data manipulation algorithms.
library pkg.collection.algorithms;
library;

import 'dart:math' show Random;

Expand Down
2 changes: 1 addition & 1 deletion lib/wrappers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/// Import `collection.dart` instead.
@Deprecated('Will be removed in collection 2.0.0.')
library dart.pkg.collection.wrappers;
library;

export 'src/canonicalized_map.dart';
export 'src/unmodifiable_wrappers.dart';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ environment:
sdk: ^3.1.0

dev_dependencies:
dart_flutter_team_lints: ^2.0.0
dart_flutter_team_lints: ^3.0.0
test: ^1.16.0

0 comments on commit fe2e800

Please sign in to comment.