From a44ec938693705a0cbce9e33b968411c3d6f7c77 Mon Sep 17 00:00:00 2001 From: Alexandre Gonzalvez Date: Fri, 18 Dec 2020 10:00:17 +0100 Subject: [PATCH] fix askCloseSession --- Application/Clavardage/src/controller/Controller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/Clavardage/src/controller/Controller.java b/Application/Clavardage/src/controller/Controller.java index b1018b8..33fb58d 100644 --- a/Application/Clavardage/src/controller/Controller.java +++ b/Application/Clavardage/src/controller/Controller.java @@ -385,7 +385,7 @@ public class Controller { } public void closeSession(Chat c) { sendMessage(new Msg_Text(myUser.getAddIP(),"end"), c); // tell rm session STOP - JOptionPane.showMessageDialog(null ,"Close session with "+c.getRemoteUser().getPseudo()+" loading history"); + JOptionPane.showMessageDialog(null ,"Close session with "+c.getRemoteUser().getPseudo()); this.myUser.closeChat(c); }