removed final from datafield

This commit is contained in:
Andrin Fassbind 2021-10-14 14:34:12 +02:00
parent 805b1fc614
commit d88c41fa6c
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ public class Game {
private Gamefield gamefield; private Gamefield gamefield;
private Language language; private Language language;
private final int player1 = 1; private int player1 = 1;
private final int player2 = 2; private int player2 = 2;
private int playerPlaying = 1; private int playerPlaying = 1;
// //