🛠️ 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 2 additions and 2 deletions
Showing only changes of commit 6b82120e17 - Show all commits

View File

@ -154,7 +154,7 @@ public class MySQLConnection {
* @param tableName The name of the table * @param tableName The name of the table
* @return Update de.gnmyt.SQLToolkit.manager * @return Update de.gnmyt.SQLToolkit.manager
*/ */
public UpdateManager update(String tableName) { public UpdateManager updateTo(String tableName) {
return new UpdateManager(this, tableName); return new UpdateManager(this, tableName);
} }

View File

@ -132,7 +132,7 @@ public abstract class SQLTable {
* @return the update manager * @return the update manager
*/ */
public UpdateManager update() { public UpdateManager update() {
return connection.update(tableName()); return connection.updateTo(tableName());
} }
/** /**