|
|
@@ -347,2 +349,4 @@ |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public int bulkDeleteWhere(@NonNull final String whereClause, @NonNull final Map<String, Object> parameters) { |
|
|
@@ -349,0 +355,4 @@ |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void delete(@Nullable final Collection<Account> accounts) { |
|
|
@@ -26,3 +28,3 @@ |
|
|
|
@Override protected void process() { |
|
|
|
try { |
|
|
|
final int ct = dataDAO.bulkDeleteWhere("expiration < " + now()); |
|
|
|
final int ct = dataDAO.bulkDeleteWhere("expiration < " + now(), new HashMap<>()); |
@jonathan please review
Also included fix for Jenkins builds when utils submodules’ links are changed in PRs.
some minor changes requested
Please put
@Override
on the same line as the method declaration.Please put
@Override
on the same line as the method declaration.If we keep the original
bulkDeleteWhere
we don’t need this change.Reviewers
189eda7d46
.