This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 77e001c07a75f5bda8ff9b05e06e7d6f5af45714 Author: jcouteau <couteau@codelutin.com> Date: Tue Jul 3 11:48:42 2018 +0200 refs #9986 --- .../ui/swing/content/demande/takenby/actions/TakenByAction.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/takenby/actions/TakenByAction.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/takenby/actions/TakenByAction.java index cee6f843..69b4f081 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/takenby/actions/TakenByAction.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/takenby/actions/TakenByAction.java @@ -55,7 +55,6 @@ public class TakenByAction extends AbstractFaxToMailAction<TakenByFormUIModel, T EmailService emailService = context.newServiceContext().getEmailService(); FaxToMailUser user = getModel().getTakenBy(); - FaxToMailUser currentUser = context.getCurrentUser(); Collection<DemandeUIModel> demands = getModel().getDemandsToTake(); for (DemandeUIModel demand : demands) { @@ -67,7 +66,7 @@ public class TakenByAction extends AbstractFaxToMailAction<TakenByFormUIModel, T Email email = demand.toEntity(persistedEmail); - email = emailService.takeBy(email, currentUser); + email = emailService.takeBy(email, user); demand.fromEntity(email); } } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.