Skip to content

Commit

Permalink
[#17] refactor: Remove unused method
Browse files Browse the repository at this point in the history
- 불필요한 메소드 ItemController::showDishByHash 삭제
  • Loading branch information
jihye-woo committed Apr 22, 2021
1 parent 971b284 commit 5715f70
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ public ItemController(ItemService itemService) {
this.itemService = itemService;
}

@GetMapping("/dishes")
public List<ItemDTO> showDishByHash() {
logger.info("Test show dishes");
return dishService.showDishes();
}

@GetMapping("/dish/{hash}")
public ItemDTO showSingleDish(@PathVariable String hash) {
logger.info("Show single dish by hash");
Expand Down

0 comments on commit 5715f70

Please sign in to comment.