Change stream

This commit is contained in:
taksoidet 2019-01-31 02:33:30 +03:00 committed by GitHub
parent b099cb6f4e
commit 935b75d685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,9 +22,7 @@ public PhotoSize getPhoto(Update update) {
// We fetch the bigger photo // We fetch the bigger photo
return photos.stream() return photos.stream()
.sorted(Comparator.comparing(PhotoSize::getFileSize).reversed()) .max(Comparator.comparing(PhotoSize::getFileSize)).get();
.findFirst()
.orElse(null);
} }
// Return null if not found // Return null if not found