Skip to content

Commit

Permalink
출력문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
youngh0 authored Jun 4, 2024
1 parent 123cde8 commit d1d7ebe
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ public boolean containsPayType(List<PayType> memberPayTypes) {
public int calculateWalkingTime(Location destination) {
double distance = calculateDistanceToDestination(destination);
double averageWalkingTime = distance / AVERAGE_WALKING_SPEED;
System.out.println(averageWalkingTime);
return (int) Math.ceil(averageWalkingTime * 60);
}

Expand Down

0 comments on commit d1d7ebe

Please sign in to comment.