Cleaned up some code
This commit is contained in:
@ -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
|
||||
|
@ -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() {
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user