Fix regex used in the DailySudoku class
This commit is contained in:
parent
cb3e20966d
commit
8780dcf640
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue