Skip to content

Commit

Permalink
chore: adjust comments
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Oct 11, 2024
1 parent 6ab28df commit fed7e05
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/src/equatable_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ int mapPropsToHashCode(Iterable<Object?>? props) {
}

/// Determines whether [a] and [b] are equal.
// This method is optimized for comparing properties
// from primitive types like int, double, String, bool.
bool equals(List<Object?> a, List<Object?> b) {
if (identical(a, b)) return true;
if (a.length != b.length) return false;
Expand Down

0 comments on commit fed7e05

Please sign in to comment.