refactor: 取消解析变量时的校验

This commit is contained in:
zhouhao 2025-06-12 20:32:44 +08:00
parent 7fe35252f3
commit d6628c52f5
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ public class VariableSource implements Serializable {
}
public Object resolveStatic(Map<String, Object> context) {
validate();
// validate();
if (getSource() == VariableSource.Source.fixed) {
return value;
}