Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -77,8 +77,8 @@ public class SharedServiceDefault implements SharedService { | ... | @@ -77,8 +77,8 @@ public class SharedServiceDefault implements SharedService { |
77 | // TODO Remplacer l'astuce par une vraie récupération de l'utilisateur | 77 | // TODO Remplacer l'astuce par une vraie récupération de l'utilisateur |
78 | List<Account> accounts = userService.getAllUsers(); | 78 | List<Account> accounts = userService.getAllUsers(); |
79 | Random random = new Random(); | 79 | Random random = new Random(); |
80 | - Account account = accounts.get(random.nextInt(accounts.size())); | 80 | + |
81 | + return accounts.get(random.nextInt(accounts.size())); | ||
81 | // End TODO | 82 | // End TODO |
82 | - return account; | ||
83 | } | 83 | } |
84 | } | 84 | } | ... | ... |
-
Please register or login to post a comment