remove warnings

This commit is contained in:
Athou
2024-07-03 20:05:20 +02:00
parent 6bff657d4d
commit d4c9bd1dd7
17 changed files with 128 additions and 129 deletions

View File

@@ -210,7 +210,7 @@ public class FeverREST {
.map(Feed::getLastUpdated)
.filter(Objects::nonNull)
.max(Comparator.naturalOrder())
.map(d -> d.getEpochSecond())
.map(Instant::getEpochSecond)
.orElse(0L);
}