suppression des fichiers .class

This commit is contained in:
Louis Farina 2020-12-14 17:03:34 +01:00
parent 935125c083
commit 9d8032a0cd
9 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
/bin/
*.jar
*.class

Binary file not shown.

View file

@ -286,7 +286,7 @@ public class ClientWindow implements ActionListener {
chatText = new JTextArea(1,1);
textScroll = new JScrollPane(chatText);
sendPanel = new JPanel(new GridLayout(1, 2));
sendPanel = new JPanel(new BorderLayout(1, 2));
messageField = new JTextField();
sendButton = new JButton("Envoyer");
sendButton.addActionListener(this);
@ -294,7 +294,7 @@ public class ClientWindow implements ActionListener {
sendPanel.add(messageField);
sendPanel.add(sendButton);
sendPanel.add(sendButton, BorderLayout.EAST);
chatWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.