remove unused code

This commit is contained in:
mohammad
2025-03-03 17:34:15 +03:00
parent 7e2e591d71
commit d95588ce84
2 changed files with 2 additions and 4 deletions

View File

@ -99,8 +99,7 @@ class OneTouchBloc extends Bloc<OneTouchEvent, OneTouchState> {
add(OneTouchUpdated()); add(OneTouchUpdated());
} }
}); });
} catch (e) { } catch (_) {
print("Error listening to changes: $e");
} }
} }

View File

@ -141,8 +141,7 @@ class TwoTouchBloc extends Bloc<TwoTouchEvent, TwoTouchState> {
add(TwoTouchUpdated()); add(TwoTouchUpdated());
} }
}); });
} catch (e) { } catch (_) {
print("Error listening to changes: $e");
} }
} }