Skip to content

Commit

Permalink
Restore an explicit null return (dart-archive/collection#219)
Browse files Browse the repository at this point in the history
This was unnecessarily removed in an unrelated change.

dart-archive/collection#218 (comment)
  • Loading branch information
natebosch authored Sep 20, 2021
1 parent 3c7d684 commit 36b0fe0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/collection/lib/src/iterable_extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,7 @@ extension IterableComparableExtension<T extends Comparable<T>> on Iterable<T> {
}
return value;
}
return null;
}

/// A minimal element of the iterable.
Expand Down

0 comments on commit 36b0fe0

Please sign in to comment.