refactor: remove registerOperators

This commit is contained in:
katherinehhh 2025-02-15 22:08:01 +08:00
parent 3162ea6c4e
commit a22c65d01c

View File

@ -495,11 +495,4 @@ export class Application {
getGlobalVar(key) {
return get(this.globalVars, key);
}
registerOperators(key, operator) {
this.jsonLogic[key] = operator;
}
getOperator(key) {
return this.jsonLogic[key];
}
}