Skip to content

Commit

Permalink
Refactor : 빌드 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-Dong-Jun99 committed Jan 6, 2024
1 parent 2122bd5 commit 935c7f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public void addTripItem(String tripId, TripItemAddMsg tripItemAddMsg) {
public void updateTripItemOrder(String tripId, TripItemOrderUpdateMsg orderUpdateMsg) {
// TODO : /sub/{tripId}/tripItems/{visitDate}
// TODO : /sub/{tripId}/path/{visitDate}
ChannelTopic tripItemTopic = redisChannelUtil.getChannelTopic(tripId, tripItemAddMsg.newTripItems().get(0).visitDate(), TRIP_ITEM);
ChannelTopic pathTopic = redisChannelUtil.getChannelTopic(tripId, tripItemAddMsg.newTripItems().get(0).visitDate(), PATH);
ChannelTopic tripItemTopic = redisChannelUtil.getChannelTopic(tripId, orderUpdateMsg.visitDate(), TRIP_ITEM);
ChannelTopic pathTopic = redisChannelUtil.getChannelTopic(tripId, orderUpdateMsg.visitDate(), PATH);


}
Expand Down

0 comments on commit 935c7f1

Please sign in to comment.