Saves the entities (Objects) and updates the @Id field @param the type of the entity @param entities the entities to save @return the list of updated entities @deprecated use #save(List) instead
(Iterable<T> entities)
| 485 | * @deprecated use {@link #save(List)} instead |
| 486 | */ |
| 487 | @Deprecated(since = "2.0", forRemoval = true) |
| 488 | default <T> List<T> save(Iterable<T> entities) { |
| 489 | List<T> list = new ArrayList<>(); |
| 490 | entities.forEach(list::add); |
no outgoing calls