Skip to content

Commit 2a85c91

Browse files
Fix atomic type (again)
1 parent 6afc247 commit 2a85c91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class FixRestChannel {
7878

7979
final Comparator<T> comparator = comparingInstant(keyExtractor);
8080
final AtomicLong previousStart = new AtomicLong(startAt.getEpochSecond());
81-
final AtomicInteger previousStart_ns = new AtomicLong(startAt.getNano());
81+
final AtomicInteger previousStart_ns = new AtomicInteger(startAt.getNano());
8282

8383
return Flux.defer { nextPage.apply(previousStart.get(), previousStart_ns.get()) }
8484
.sort(reverse ? comparator.reversed() : comparator)

0 commit comments

Comments
 (0)