From fed7e05b7a665b3c7dce6b6eb34c2ddb920e2759 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Fri, 11 Oct 2024 00:17:26 -0500 Subject: [PATCH] chore: adjust comments --- lib/src/equatable_utils.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/src/equatable_utils.dart b/lib/src/equatable_utils.dart index 8ab1b7d5..53b8b3e1 100644 --- a/lib/src/equatable_utils.dart +++ b/lib/src/equatable_utils.dart @@ -7,8 +7,6 @@ int mapPropsToHashCode(Iterable? 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 a, List b) { if (identical(a, b)) return true; if (a.length != b.length) return false;