Fix regex used in the DailySudoku class

This commit is contained in:
uykek 2020-08-23 10:12:58 +02:00
parent cb3e20966d
commit 8780dcf640

View file

@ -65,7 +65,7 @@ public class DailySudoku extends Level {
* does not have the right format) * does not have the right format)
*/ */
public int getTimeNeededInSeconds() { public int getTimeNeededInSeconds() {
if (timeNeeded.matches("/d/d:/d/d:/d/d")) { if (timeNeeded.matches("[0-9]{2}:[0-5][0-9]:[0-5][0-9]")) {
String[] timeInstances = timeNeeded.split(":"); String[] timeInstances = timeNeeded.split(":");
int hourIndex = 0; int hourIndex = 0;
int minuteIndex = 1; int minuteIndex = 1;