🛠️ 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 8 deletions
Showing only changes of commit c77aaa413f - Show all commits

View File

@ -81,12 +81,9 @@ public class InsertManager {
/**
* Execute the current SQL query
*
* @return this class
*/
public InsertManager execute() {
public void execute() {
connection.update(prepareStatement(), values.values().toArray());
return this;
}
}

View File

@ -88,12 +88,9 @@ public class UpdateManager {
/**
* Update the entries with your current conditions
*
* @return this class
*/
public UpdateManager execute() {
public void execute() {
connection.update(prepareUpdateStatement(), getTempParams().toArray());
return this;
}
/**