PIbd-23. Zakharov R.A. Lab work 04 #5

Closed
Zakharov_Rostislav wants to merge 5 commits from Lab4 into Lab3
Showing only changes of commit 22c6e38b92 - Show all commits

View File

@ -188,7 +188,8 @@ public class FrameShipsCollection extends JFrame {
pictureBoxCollection.repaint();
}
private void buttonTrashClick(){
if(trashCollection.peek() == null)
DrawingShip ship = trashCollection.pop();
if(ship == null)
return;
FrameBattleship form;
try {
@ -196,6 +197,6 @@ public class FrameShipsCollection extends JFrame {
} catch (IOException e) {
throw new RuntimeException(e);
}
form.setShip(trashCollection.pop());
form.setShip(ship);
}
}