diff --git a/FormMapWithSetBattleship.java b/FormMapWithSetBattleship.java index 63d827f..bb9db36 100644 --- a/FormMapWithSetBattleship.java +++ b/FormMapWithSetBattleship.java @@ -54,8 +54,8 @@ public class FormMapWithSetBattleship extends JComponent { statusPanel.add(mapSelectComboBox); - JButton addAirbusButton = new JButton("Добавить корабль"); - addAirbusButton.addActionListener(e -> { + JButton addBattleshipButton = new JButton("Добавить корабль"); + addBattleshipButton.addActionListener(e -> { if (_mapBattleshipsCollectionGeneric == null) { @@ -77,7 +77,7 @@ public class FormMapWithSetBattleship extends JComponent { JOptionPane.showMessageDialog(form, "Объект не добавлен", "Добавление", JOptionPane.OK_CANCEL_OPTION); } }); - statusPanel.add(addAirbusButton); + statusPanel.add(addBattleshipButton); JFormattedTextField maskedTextFieldPosition = null; try {