Fix error runnables not being passed through even when intended to

This commit is contained in:
AlexTheCoder 2017-04-15 16:49:47 -04:00
parent 6d67a4f9f8
commit 570355e41b
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public abstract class RepositoryBase
protected int executeUpdate(String query, Runnable onSQLError, Column<?>...columns) protected int executeUpdate(String query, Runnable onSQLError, Column<?>...columns)
{ {
return executeInsert(query, null, columns); return executeInsert(query, null, onSQLError, columns);
} }
/** /**