Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Заменить лайки на систему рейтинга #30

Closed
wants to merge 27 commits into from

Conversation

vvbakhanovich
Copy link
Owner

No description provided.

…ating

# Conflicts:
#	src/main/java/ru/yandex/practicum/filmorate/dao/FilmStorage.java
#	src/main/java/ru/yandex/practicum/filmorate/dao/impl/FilmDbStorage.java
#	src/main/java/ru/yandex/practicum/filmorate/service/impl/UserServiceImpl.java
# Conflicts:
#	src/main/java/ru/yandex/practicum/filmorate/controller/FilmController.java
#	src/main/java/ru/yandex/practicum/filmorate/dao/FilmLikeStorage.java
#	src/main/java/ru/yandex/practicum/filmorate/dao/impl/FilmDbStorage.java
#	src/main/java/ru/yandex/practicum/filmorate/dao/impl/FilmLikeDbStorage.java
#	src/main/java/ru/yandex/practicum/filmorate/service/impl/FilmServiceImpl.java
#	src/main/java/ru/yandex/practicum/filmorate/service/impl/UserServiceImpl.java
#	src/test/java/ru/yandex/practicum/filmorate/storage/FilmDbStorageTest.java
#	src/test/java/ru/yandex/practicum/filmorate/storage/UserDbStorageTest.java
if (currentUserLikedFilms.stream().noneMatch(f -> f.getId() == film.getId())) {
continue;
}
Film sameFilm = currentUserLikedFilms.stream().filter(f -> f.getId() == film.getId()).findFirst().get();
Copy link
Collaborator

@ayzatmr ayzatmr Feb 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

findFirst() - у тебя вернет либо объект либо optional.emty() => ты можешь if наверху удалить, а if напсиать уже ниже, в виде если findFirst() пустой тогда continue, если нет, то сделай get(). Тут у тебя получается что ты 2 раза по циклу итерируешься чтобы сделать одно и тоже

upd:

по моему там вообще можно сделать getOrElse() и все в одну строчку уместить)

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Спасибо, так и сделал)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants