--- old/src/java.base/share/classes/java/text/ChoiceFormat.java 2014-08-27 22:08:22.000000000 +0800 +++ new/src/java.base/share/classes/java/text/ChoiceFormat.java 2014-08-27 22:08:22.000000000 +0800 @@ -272,7 +272,7 @@ double tryLess = Math.abs(Math.IEEEremainder(less, 1.0d)); if (tryLessOrEqual < tryLess) { - result.append(""+choiceLimits[i]); + result.append(choiceLimits[i]); result.append('#'); } else { if (choiceLimits[i] == Double.POSITIVE_INFINITY) { @@ -280,7 +280,7 @@ } else if (choiceLimits[i] == Double.NEGATIVE_INFINITY) { result.append("-\u221E"); } else { - result.append(""+less); + result.append(less); } result.append('<'); }