fix: remove print statements

Signed-off-by: The one with the braid <the-one@with-the-braid.cf>
This commit is contained in:
The one with the braid 2023-09-08 09:25:24 +02:00
parent 8f8b970d00
commit fd864cf4e2
2 changed files with 0 additions and 2 deletions

View file

@ -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;
}

View file

@ -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);