Fixed a bug in the deletion manager

This commit is contained in:
mathias 2021-08-19 21:14:53 +02:00
parent 6b82120e17
commit 2446395f4c
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -82,7 +82,7 @@ public class DeletionManager {
* Executes the 'delete'-statement
*/
public void execute() {
connection.update(prepareStatement(), getTempParams());
connection.update(prepareStatement(), getTempParams().toArray());
}
/**