Skip to content

Commit

Permalink
fix: Rename deletedUserIds to deletedIds
Browse files Browse the repository at this point in the history
  • Loading branch information
anku255 committed Feb 28, 2024
1 parent fe19ff9 commit a139b55
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ public static List<String> deleteBulkImportUsers(Start start, AppIdentifier appI
pst.setObject(i + 1, parameters.get(i));
}
}, result -> {
List<String> deletedUserIds = new ArrayList<>();
List<String> deletedIds = new ArrayList<>();
while (result.next()) {
deletedUserIds.add(result.getString("id"));
deletedIds.add(result.getString("id"));
}
return deletedUserIds;
return deletedIds;
});
}
private static class BulkImportUserRowMapper implements RowMapper<BulkImportUser, ResultSet> {
Expand Down

0 comments on commit a139b55

Please sign in to comment.