Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Nov 21, 2023
1 parent 660af78 commit ccc0f25
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ public <T> Stream<T> findAll(Sort sort, long offset, long limit, Class<T> target
Assert.notNull(setName, "Set name must not be null!");
Assert.notNull(targetClass, "Target class must not be null!");

return findUsingQualifierWithPostProcessing(setName, targetClass, sort, offset, limit, null);
return findUsingQualifierWithPostProcessing(setName, targetClass, sort, offset, limit);
}

private <T> Stream<T> findUsingQueryWithPostProcessing(String setName, Class<T> targetClass, Query query) {
Expand Down Expand Up @@ -982,7 +982,7 @@ public <T> Stream<T> findInRange(long offset, long limit, Sort sort,
Assert.notNull(targetClass, "Target class must not be null!");
Assert.notNull(setName, "Set name must not be null!");

return findUsingQualifierWithPostProcessing(setName, targetClass, sort, offset, limit, null);
return findUsingQualifierWithPostProcessing(setName, targetClass, sort, offset, limit);
}

@Override
Expand Down Expand Up @@ -1265,7 +1265,7 @@ private Record putAndGetHeader(AerospikeWriteData data, WritePolicy policy, bool

@SuppressWarnings("SameParameterValue")
private <T> Stream<T> findUsingQualifierWithPostProcessing(String setName, Class<T> targetClass, Sort sort,
long offset, long limit, Qualifier qualifier) {
long offset, long limit) {
verifyUnsortedWithOffset(sort, offset);
Stream<T> results = find(targetClass, setName);
return applyPostProcessingOnResults(results, sort, offset, limit);
Expand Down

0 comments on commit ccc0f25

Please sign in to comment.