From 9a8fb28d576ee9c42fcd2c3ab3239edd55cf299b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Wed, 21 May 2025 16:20:43 +0200 Subject: [PATCH] refactor(utils): fix warnings --- packages/wyatt_type_utils/lib/src/either/either_base.dart | 2 ++ packages/wyatt_type_utils/lib/src/either/option.dart | 2 ++ 2 files changed, 4 insertions(+) diff --git a/packages/wyatt_type_utils/lib/src/either/either_base.dart b/packages/wyatt_type_utils/lib/src/either/either_base.dart index aef28c3a..892af4f8 100644 --- a/packages/wyatt_type_utils/lib/src/either/either_base.dart +++ b/packages/wyatt_type_utils/lib/src/either/either_base.dart @@ -14,6 +14,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . +// ignore_for_file: unused_element + import 'dart:async'; part 'option.dart'; diff --git a/packages/wyatt_type_utils/lib/src/either/option.dart b/packages/wyatt_type_utils/lib/src/either/option.dart index f5bb8f89..9d1b00fe 100644 --- a/packages/wyatt_type_utils/lib/src/either/option.dart +++ b/packages/wyatt_type_utils/lib/src/either/option.dart @@ -14,6 +14,8 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . +// ignore_for_file: unused_element + part of 'either_base.dart'; /// {@template option_exception}