refactor: follow clippy recommendation :
Some checks failed
Build project / quality-and-build (push) Successful in 10m41s
Build project / SonarQube Trigger (push) Failing after 14s

- Remove unused constructor for Table & Column
- Add .expect in databases. disconnect
- Remove usedless String::from in column serializer
This commit is contained in:
Namu
2026-04-02 11:12:24 +02:00
parent 4cdb5047ca
commit de3f2af9fc
5 changed files with 17 additions and 30 deletions

View File

@@ -26,7 +26,7 @@ impl DbBuilderFacade {
if let Ok(connection) = connection_result {
run_command(&connection, sql_tables).expect("Failed to execute query");
disconnect(connection).expect("Failed to disconnect from sqlite");
disconnect(connection);
Ok(())
} else {
Err("Failed to connect to the server".to_string())