Changed UpdateManager#update to UpdateManager#execute

This commit is contained in:
mathias 2021-08-19 20:41:52 +02:00
parent f7eebbed86
commit f6bfcb30d9
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -91,7 +91,7 @@ public class UpdateManager {
* *
* @return this class * @return this class
*/ */
public UpdateManager update() { public UpdateManager execute() {
connection.update(prepareUpdateStatement(), getTempParams().toArray()); connection.update(prepareUpdateStatement(), getTempParams().toArray());
return this; return this;
} }