Fix code style error
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-15 00:40:19 +01:00
parent 0d862da9ec
commit fb752fb9a9
6 changed files with 13 additions and 13 deletions

View File

@@ -34,8 +34,8 @@ import java.util.concurrent.TimeUnit;
public class Trivia
{
private final static String triviaLink = "https://opentdb.com/api.php?amount=10&type=multiple&category=";
private final static String categoriesLink = "https://opentdb.com/api_category.php";
private static final String triviaLink = "https://opentdb.com/api.php?amount=10&type=multiple&category=";
private static final String categoriesLink = "https://opentdb.com/api_category.php";
public static List<String> channelsRunningTrivia = new ArrayList<>();