From 71b2f30d290b31ad3c78887a3b17921065ed8519 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Fri, 28 Nov 2025 14:00:36 +0100 Subject: [PATCH] removed comment --- lib/data/dao/game_dao.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/data/dao/game_dao.dart b/lib/data/dao/game_dao.dart index 5d05914..c941499 100644 --- a/lib/data/dao/game_dao.dart +++ b/lib/data/dao/game_dao.dart @@ -100,7 +100,6 @@ class GameDao extends DatabaseAccessor with _$GameDaoMixin { /// Adds multiple [Game]s to the database in a batch operation. /// Also adds associated players and groups if they exist. /// If the [games] list is empty, the method returns immediately. - /// If a game, player, or group already exists, it will be replaced. Future addGamesAsList({required List games}) async { if (games.isEmpty) return; await db.transaction(() async {