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

bump lints dep and fix #344

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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