Polishing

This commit is contained in:
Arjen Poutsma 2020-08-05 11:26:25 +02:00
parent 4d670ee25d
commit b0d273e047
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ final class BitsCronField extends CronField {
private static BitsCronField parseDate(String value, BitsCronField.Type type) {
if (value.indexOf('?') != -1) {
if (value.equals("?")) {
value = "*";
}
return BitsCronField.parseField(value, type);