Skip to content

Commit

Permalink
refactor: 수식 표현 방식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cpot5620 committed Sep 19, 2023
1 parent 6385df7 commit 83633fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public double getLatencyForSeconds() {

threadLocal.remove();

return (double) (end - start) / 1000;
return (end - start) / 1000d;
}

}

0 comments on commit 83633fc

Please sign in to comment.