Cleaned up some code

This commit is contained in:
2021-08-19 17:11:38 +02:00
parent e8544ff761
commit 264d33db4f
5 changed files with 7 additions and 4 deletions

View File

@ -8,8 +8,8 @@ import java.util.concurrent.atomic.AtomicBoolean;
public class InsertManager {
private final MySQLConnection connection;
private String tableName;
private final HashMap<String, Object> values;
private String tableName;
/**
* Basic constructor for the InsertManager

View File

@ -130,6 +130,7 @@ public class ResultManager {
/**
* Checks if the current result exists
*
* @return <code>true</code> if the current result exists, otherwise <code>false</code>
*/
public boolean exists() {

View File

@ -13,9 +13,9 @@ public class UpdateManager {
private final Logger LOG = MySQLConnection.LOG;
private final MySQLConnection connection;
private String tableName;
private final HashMap<String, Object> whereList;
private final HashMap<String, Object> setList;
private String tableName;
/**
* Basic constructor for the UpdateManager