Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vzwingma committed Dec 13, 2024
1 parent 414db6f commit bb156f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class ComptesDatabaseAdaptator implements IComptesRepository {
public Multi<CompteBancaire> chargeComptes(String idUtilisateur) {
try {
LOGGER.info("Chargement des comptes de l'utilisateur");
return find("proprietaire.login", idUtilisateur)
return findAll() // find("proprietaire.login", idUtilisateur) -> issue IHM#219
.stream()
.invoke(compte -> LOGGER.debug("Chargement du compte [{}] en BDD terminé", compte.getLibelle()));
} catch (Exception e) {
Expand Down

0 comments on commit bb156f6

Please sign in to comment.