Skip to content

Commit

Permalink
[WIP] repeat 增加 重复区间+时间点/区间 的能力
Browse files Browse the repository at this point in the history
  • Loading branch information
du00cs committed Jul 31, 2024
1 parent 855a48c commit af40f2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ trait Rules extends DimRules {
prod = regexMatch {case text :: _ =>
val m = WeekX.matcher(text)
var pos = 0
val days = mutable.MutableList[Int]()
val days = mutable.Buffer[Int]()
while (m.find(pos)) {
val d = m.group(2) match {
case "" => 1
Expand Down

0 comments on commit af40f2e

Please sign in to comment.