Skip to content

Commit

Permalink
Maintain privacy
Browse files Browse the repository at this point in the history
  • Loading branch information
josiah-roberts committed Dec 29, 2023
1 parent 3fb4b72 commit 5b1f657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gregtech/api/util/TextFormattingUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class TextFormattingUtil {
private static final char[] metricSuffixChars = {
'k', 'M', 'G', 'T', 'P', 'E'
};
protected static final NumberFormat NUMBER_FORMAT = NumberFormat.getInstance();
private static final NumberFormat NUMBER_FORMAT = NumberFormat.getInstance();

public static String formatLongToCompactString(long value, int precision) {
if (value == 0 || Math.abs(value) < Math.pow(10, precision)) {
Expand Down

0 comments on commit 5b1f657

Please sign in to comment.