From fd864cf4e2a0e18b2d513ea884c42779d2554adb Mon Sep 17 00:00:00 2001 From: The one with the braid Date: Fri, 8 Sep 2023 09:25:24 +0200 Subject: [PATCH] fix: remove print statements Signed-off-by: The one with the braid --- lib/src/models/pass_structure_dictionary.dart | 1 - lib/src/pass_file.dart | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/src/models/pass_structure_dictionary.dart b/lib/src/models/pass_structure_dictionary.dart index cd6eef0..6cd3693 100644 --- a/lib/src/models/pass_structure_dictionary.dart +++ b/lib/src/models/pass_structure_dictionary.dart @@ -115,7 +115,6 @@ class DictionaryField { /// Localized version of [label] based on given [locale] and [pass]. String? getLocalizedLabel(PassFile pass, Locale? locale) { final localizations = pass.getLocalizations(locale); - print(localizations); return localizations?[label] ?? label; } diff --git a/lib/src/pass_file.dart b/lib/src/pass_file.dart index 747e3d5..acaa061 100644 --- a/lib/src/pass_file.dart +++ b/lib/src/pass_file.dart @@ -122,7 +122,6 @@ class PassFile { extension: 'strings', locale: locale, ); - print(paths); if (paths.isEmpty) return null; final file = _folder.singleWhere((element) => element.name == paths.first); return LProjParser.parse(file.stringContent);