test: remove invalid null check

This commit is contained in:
2025-06-20 23:01:33 +02:00
parent b855a1dc48
commit 26618cc06d

View File

@@ -20,9 +20,5 @@ Future<Database> setup_database_connection() async {
jadbPath: jadb_path,
);
if (db_connection == null) {
throw Exception("Failed to open database");
}
return db_connection;
}