Prevent instantiating utility classes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-16 07:07:42 +01:00
parent ccf69a2903
commit 980cf5eef3
18 changed files with 73 additions and 0 deletions

View File

@@ -14,6 +14,11 @@ import java.util.UUID;
public class DiceRoll
{
private DiceRoll() {
throw new IllegalStateException("Utility class");
}
public static MessageResponse buildResponse(User author, String[] args)
{
LinkedHashMap<Dice, Integer> dicesToRoll = new LinkedHashMap<>();