Skip to content

Commit

Permalink
refactor: remove unused method (#2765)
Browse files Browse the repository at this point in the history
  • Loading branch information
bossenti authored Apr 24, 2024
1 parent 863865a commit 7aeac27
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,6 @@ public IDataLakeQueryBuilder<Query> withInclusiveFilter(List<FilterCondition> fi
return this;
}

@Override
public DataLakeInfluxQueryBuilder withFilter(NestedClause clause) {
this.whereClauses.add(clause);

return this;
}

@Override
public DataLakeInfluxQueryBuilder withGroupByTime(String timeInterval) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

import org.apache.streampipes.dataexplorer.param.model.AggregationFunction;

import org.influxdb.querybuilder.clauses.NestedClause;

import java.util.List;

public interface IDataLakeQueryBuilder<T> {
Expand Down Expand Up @@ -63,8 +61,6 @@ IDataLakeQueryBuilder<T> withInclusiveFilter(String field,

IDataLakeQueryBuilder<T> withInclusiveFilter(List<FilterCondition> filterConditions);

IDataLakeQueryBuilder<T> withFilter(NestedClause clause);

IDataLakeQueryBuilder<T> withGroupByTime(String timeInterval);

IDataLakeQueryBuilder<T> withGroupByTime(String timeInterval,
Expand Down

0 comments on commit 7aeac27

Please sign in to comment.