Skip to content

Commit

Permalink
del: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
david-parkk committed Aug 19, 2024
1 parent b9220f1 commit ed01976
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ public List<Menu> findStoreByRandomTag(Long userId, DefaultTag randomTag) {
public List<Menu> findOtherStoreByRandomTag(Long userId, DefaultTag randomTag) {
List<Menu> menuList = menuService.getAllOtherMenusByTagName(randomTag.getTagName(), userId);
Map<MenuIdentifier,Menu> map = new HashMap<>();
if(Objects.equals(randomTag.getTagName(), "양식"))
System.out.println("map = " + map);
for (Menu menu : menuList) {
if(menu.getUser().getId() == userId)
continue;
Expand Down

0 comments on commit ed01976

Please sign in to comment.