Skip to content
Snippets Groups Projects
Unverified Commit 313180ed authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Remove unused functions from Field and Table libs (#24871)

parent 19857658
No related branches found
No related tags found
No related merge requests found
...@@ -288,16 +288,6 @@ class FieldInner extends Base { ...@@ -288,16 +288,6 @@ class FieldInner extends Base {
return this.filterOperatorsLookup()[operatorName]; return this.filterOperatorsLookup()[operatorName];
} }
// @deprecated: use filterOperators
get filter_operators() {
return this.filterOperators();
}
// @deprecated: use filterOperatorsLookup
get filter_operators_lookup() {
return this.filterOperatorsLookup();
}
// AGGREGATIONS // AGGREGATIONS
aggregationOperators() { aggregationOperators() {
return this.table return this.table
...@@ -319,16 +309,6 @@ class FieldInner extends Base { ...@@ -319,16 +309,6 @@ class FieldInner extends Base {
return this.aggregationOperatorsLookup()[short]; return this.aggregationOperatorsLookup()[short];
} }
// @deprecated: use aggregationOperators
get aggregation_operators() {
return this.aggregationOperators();
}
// @deprecated: use aggregationOperatorsLookup
get aggregation_operators_lookup() {
return this.aggregationOperatorsLookup();
}
// BREAKOUTS // BREAKOUTS
/** /**
......
...@@ -103,11 +103,6 @@ class TableInner extends Base { ...@@ -103,11 +103,6 @@ class TableInner extends Base {
return this.aggregation_operators_lookup[short]; return this.aggregation_operators_lookup[short];
} }
// @deprecated: use aggregationOperators
get aggregation_operators() {
return this.aggregationOperators();
}
// @deprecated: use aggregationOperatorsLookup // @deprecated: use aggregationOperatorsLookup
get aggregation_operators_lookup() { get aggregation_operators_lookup() {
return this.aggregationOperatorsLookup(); return this.aggregationOperatorsLookup();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment