rmeoved tournament Type GROUPS from Tournament Enum Type.

This commit is contained in:
schrom01 2022-05-13 15:58:58 +02:00
parent c862492be3
commit 53cf3bdacc
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ public class Tournament implements Serializable {
* (In the Prototype only the KO-System has full functionality
*/
public enum Type {
KO("KO-System"), GROUPS("Gruppenspiele");
KO("KO-System"); //GROUPS("Gruppenspiele"); //Type GROUPS is not implemented in this prototype.
private String name;