Bump Couchbase Java SDK to 3.4.7. (#1755)

Closes #1754.
This commit is contained in:
Michael Reiche
2023-06-14 10:49:06 -07:00
committed by mikereiche
parent e94f88ac5c
commit 261bab3e41
2 changed files with 6 additions and 6 deletions

View File

@@ -149,8 +149,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
if(isSamplingScan){
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
} else {
ScanTerm lowerTerm = ScanTerm.minimum();
ScanTerm upperTerm = ScanTerm.maximum();
ScanTerm lowerTerm = null;
ScanTerm upperTerm = null;
if (lower != null) {
lowerTerm = ScanTerm.inclusive(lower);
}
@@ -198,8 +198,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
if(isSamplingScan){
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
} else {
ScanTerm lowerTerm = ScanTerm.minimum();
ScanTerm upperTerm = ScanTerm.maximum();
ScanTerm lowerTerm = null;
ScanTerm upperTerm = null;
if (lower != null) {
lowerTerm = ScanTerm.inclusive(lower);
}