Skip to content

Commit

Permalink
Avoid using deprecated API
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime committed Jun 17, 2024
1 parent e96cd4e commit 69afea5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ private Envelope getFilterBounds(Filter filter) {
}

@Override
protected boolean canSort() {
protected boolean canSort(Query q) {
// at least for natural ordering, DDGS has a predictable iteration order
return true;
}

@Override
protected boolean canFilter() {
protected boolean canFilter(Query q) {
return true;
}

Expand Down Expand Up @@ -293,7 +293,7 @@ public DGGSInstance getDGGS() {
}

@Override
protected boolean canRetype() {
protected boolean canRetype(Query q) {
return true;
}

Expand Down

0 comments on commit 69afea5

Please sign in to comment.