We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d670ee commit b0d273eCopy full SHA for b0d273e
spring-context/src/main/java/org/springframework/scheduling/support/BitsCronField.java
@@ -109,7 +109,7 @@ public static BitsCronField parseDaysOfWeek(String value) {
109
110
111
private static BitsCronField parseDate(String value, BitsCronField.Type type) {
112
- if (value.indexOf('?') != -1) {
+ if (value.equals("?")) {
113
value = "*";
114
}
115
return BitsCronField.parseField(value, type);
0 commit comments