See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
import java.text.NumberFormat | |
import java.util.* | |
enum class PaymentMethod(val balance: Double) { | |
CASH(14.02) { | |
override fun printFormattedAmount(): String { | |
return NumberFormat.getCurrencyInstance(Locale.US).format(balance) | |
} | |
}, |