Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class ToothController {
if(100 < Double.parseDouble(percentStr))
percentStr = "100.00";
toothReport.setName(koreanPart);
toothReport.setPercent(percentStr);
toothReport.setPercent(Double.parseDouble(percentStr));
toothReport.setDescription(toothService.evaluationPercentValue(Double.parseDouble(percentStr)));
toothReports.add(toothReport);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ToothDataAnalyzer {
@Setter
public static class ToothReport implements Comparable<ToothReport>{
private String name;
private String percent;
private Double percent;
private String description;

@Override
Expand Down
Loading