Skip to content

Commit

Permalink
Merge pull request #1213 from Lucky3028/fix/#1071
Browse files Browse the repository at this point in the history
整地量の表記の小数点以下を表示しない
  • Loading branch information
kory33 committed Oct 21, 2021
2 parents 83ca18b + f6d0908 commit c8f6b85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ object BreakCountBarManipulation {
val level = seichiAmountData.levelCorrespondingToExp
val starLevel = seichiAmountData.starLevelCorrespondingToExp

// 3桁毎カンマ区切り、小数点以下一桁を表示
// 3桁毎カンマ区切り
def formatAmount(expAmount: SeichiExpAmount): String = {
val decimalFormat = new DecimalFormat("#,##0.0")
val decimalFormat = new DecimalFormat("#,##0")
decimalFormat.format(expAmount.amount.bigDecimal)
}

Expand Down

0 comments on commit c8f6b85

Please sign in to comment.