From 488b18b40c72adff928d486962388c2f7eb560ba Mon Sep 17 00:00:00 2001 From: punchready Date: Mon, 31 May 2021 17:51:57 +0200 Subject: [PATCH] fix: make configuration class names consistent --- .../json/config/{PartyConfiguration.java => PartyConfig.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/{PartyConfiguration.java => PartyConfig.java} (89%) diff --git a/src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfiguration.java b/src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfig.java similarity index 89% rename from src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfiguration.java rename to src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfig.java index e0ebdac..ea53735 100644 --- a/src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfiguration.java +++ b/src/main/java/uulm/teamname/marvelous/gamelibrary/json/config/PartyConfig.java @@ -1,9 +1,9 @@ package uulm.teamname.marvelous.gamelibrary.json.config; /** - * POJO describing the PartyConfiguration as defined by the standard document + * POJO describing the PartyConfig as defined by the standard document */ -public class PartyConfiguration { +public class PartyConfig { /** Max round amount in a match */ public int maxRounds;