|
@@ -423,6 +423,7 @@ public class FactorMatch {
|
|
|
case "3": return !v.isAfter(min);
|
|
case "3": return !v.isAfter(min);
|
|
|
case "4": return v.isAfter(max);
|
|
case "4": return v.isAfter(max);
|
|
|
case "5": return !v.isBefore(max);
|
|
case "5": return !v.isBefore(max);
|
|
|
|
|
+ case "6": return !v.isAfter(min) || !v.isBefore(max);
|
|
|
default: return false;
|
|
default: return false;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|