Merge "Change visibility on formatPercentage(double)." into oc-dr1-dev

This commit is contained in:
Daniel Nishi
2017-07-06 17:04:59 +00:00
committed by Android (Google) Code Review

View File

@@ -130,7 +130,7 @@ public class Utils {
}
/** Formats a double from 0.0..1.0 as a percentage. */
private static String formatPercentage(double percentage) {
public static String formatPercentage(double percentage) {
return NumberFormat.getPercentInstance().format(percentage);
}