🛠️ Code cleanup & added many new features #1

Merged
gnmyt merged 121 commits from features/code-cleanup into master 2021-09-02 13:34:00 +00:00
Showing only changes of commit 7daa494272 - Show all commits

View File

@ -12,6 +12,11 @@ public class TableFactory {
private final MySQLConnection connection;
/**
* Basic constructor of the {@link TableFactory}
*
* @param connection The mysql connection
*/
public TableFactory(MySQLConnection connection) {
this.connection = connection;
}