cleanup and reformat
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-05 00:06:35 +02:00
parent 14b54501fd
commit fd2970fa59
81 changed files with 1245 additions and 766 deletions

View File

@@ -14,7 +14,8 @@ import java.util.List;
public class MagicBall
{
private MagicBall() {
private MagicBall()
{
throw new IllegalStateException("Utility class");
}
@@ -55,7 +56,7 @@ public class MagicBall
{
// add a question mark at the end, if missing.
// this might not always apply but it's fun
if(!question.endsWith("?")) question += "?";
if (!question.endsWith("?")) question += "?";
String answer = getRandomAnswer();