move decimal format to TextUtil

This commit is contained in:
Anthony Calosa
2023-07-09 10:48:34 +08:00
parent f757192df5
commit 3ec52cae4b
2 changed files with 6 additions and 5 deletions

View File

@@ -42,6 +42,10 @@ public class TextUtil {
return Normalizer.normalize(text, Normalizer.Form.NFD);
}
private static final DecimalFormat df = new DecimalFormat("#.##");
public static String decimalFormat(float value) {
return df.format(value);
}
/**
* Safely converts an object to a String.
*