Added a comment to the table factory

This commit is contained in:
mathias 2021-08-20 00:09:15 +02:00
parent a3766aa490
commit 7daa494272
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

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;
}