🛠️ 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 5cc960b21a - Show all commits

View File

@ -209,7 +209,7 @@ public class MySQLConnection {
* @param tableName The name of the table you want to delete a row from
* @return the deletion manager
*/
public DeletionManager delete(String tableName) {
public DeletionManager deleteFrom(String tableName) {
return new DeletionManager(this, tableName);
}

View File

@ -149,7 +149,7 @@ public abstract class SQLTable {
* @return the deletion manager
*/
public DeletionManager delete() {
return connection.delete(tableName());
return connection.deleteFrom(tableName());
}
/**