🛠️ 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
2 changed files with 3 additions and 3 deletions
Showing only changes of commit f6d89ee3f2 - Show all commits

View File

@ -71,7 +71,7 @@ public class MySQLConnection {
PreparedStatement ps = con.prepareStatement(query);
for (int i = 0; i < params.length; i++) {
ps.setObject(i+1, params[i]);
ps.setObject(i + 1, params[i]);
}
return ps.executeQuery();
@ -120,7 +120,7 @@ public class MySQLConnection {
PreparedStatement ps = con.prepareStatement(query);
for (int i = 0; i < params.length; i++) {
ps.setObject(i+1, params[i]);
ps.setObject(i + 1, params[i]);
}
ps.executeUpdate();

View File

@ -14,7 +14,7 @@ public class TableGenerator {
private final String tableName;
/**
* Basic constructor for the TableGenerator
* Basic constructor for the {@link TableGenerator}
*
* @param tableName Name of the table
*/