Added a comment to the InsertManager

This commit is contained in:
mathias 2021-08-26 22:26:16 +02:00
parent 262baee54c
commit d48ebe05c0
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -63,6 +63,11 @@ public class InsertManager {
connection.update(build());
}
/**
* Builds the current statement
*
* @return the current statement
*/
private SQLQuery build() {
return connection.createQuery(InsertQuery.class)
.addParameter(QueryParameter.TABLE_NAME, tableName)