This commit is contained in:
Looly
2019-10-29 19:53:17 +08:00
parent f9ee2af71c
commit e754ec3e86
45 changed files with 172 additions and 179 deletions

View File

@@ -35,7 +35,7 @@ public class DayOfWeekValueParser extends SimpleValueParser {
* 解析别名
* @param value 别名值
* @return 月份int值
* @throws CronException
* @throws CronException 无效别名抛出此异常
*/
private int parseAlias(String value) throws CronException {
if(value.equalsIgnoreCase("L")){

View File

@@ -30,7 +30,7 @@ public class MonthValueParser extends SimpleValueParser {
* 解析别名
* @param value 别名值
* @return 月份int值
* @throws CronException
* @throws CronException 无效月别名抛出此异常
*/
private int parseAlias(String value) throws CronException {
for (int i = 0; i < ALIASES.length; i++) {