[FEAT] add a contructor to simplify a checker API

This commit is contained in:
Edouard DUPIN 2024-05-28 18:04:54 +02:00
parent 38d1fa9241
commit 3c85af5af9

View File

@ -10,6 +10,10 @@ public class ConditionChecker extends QueryOption {
this.condition = items;
}
public ConditionChecker(final Condition cond) {
this.condition = cond.condition;
}
public ConditionChecker() {
this.condition = null;
}