Skip to content

Commit

Permalink
fix missspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
LaciProg committed May 6, 2024
1 parent 16015a0 commit b268617
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import java.util.List;
import java.util.HashMap;
import java.util.Map;
import javax.swing.WindowConstans;
import javax.swing.WindowConstants;

public class ViewGame extends JFrame implements ActionListener {

Expand Down Expand Up @@ -155,7 +155,7 @@ public static boolean getChosen(){
*/
public ViewGame() {
setTitle("Sivatagi vízhálózatok üzemeltetése a gyakorlatban 2");
setDefaultCloseOperation(WindowConstans.EXIT_ON_CLOSE);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
setResizable(true);
setBounds(400, 150, 1000, 700);
setLayout(new BorderLayout());
Expand Down

0 comments on commit b268617

Please sign in to comment.