mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-21036 use StringBuilder(String str) not StringBuilder(int capacity)
This commit is contained in:
parent
cad3903cc2
commit
36a4e3b5a0
2 changed files with 3 additions and 3 deletions
|
@ -3136,7 +3136,7 @@ public class MeasureUnitTest extends TestFmwk {
|
|||
* @return
|
||||
*/
|
||||
private String showBytes(byte[] contents) {
|
||||
StringBuilder b = new StringBuilder('[');
|
||||
StringBuilder b = new StringBuilder("[");
|
||||
for (int i = 0; i < contents.length; ++i) {
|
||||
int item = contents[i] & 0xFF;
|
||||
if (item >= 0x20 && item <= 0x7F) {
|
||||
|
|
|
@ -968,7 +968,7 @@ public class PluralRulesTest extends TestFmwk {
|
|||
for (Object[] caseDatum : casesData) {
|
||||
String skeleton = (String) caseDatum[0];
|
||||
int input = (int) caseDatum[1];
|
||||
String expectedString = (String) caseDatum[2];
|
||||
// String expectedString = (String) caseDatum[2];
|
||||
String expectPluralRuleKeyword = (String) caseDatum[3];
|
||||
|
||||
String actualPluralRuleKeyword =
|
||||
|
@ -1243,7 +1243,7 @@ public class PluralRulesTest extends TestFmwk {
|
|||
* @return
|
||||
*/
|
||||
private String showBytes(byte[] contents) {
|
||||
StringBuilder b = new StringBuilder('[');
|
||||
StringBuilder b = new StringBuilder("[");
|
||||
for (int i = 0; i < contents.length; ++i) {
|
||||
int item = contents[i] & 0xFF;
|
||||
if (item >= 0x20 && item <= 0x7F) {
|
||||
|
|
Loading…
Add table
Reference in a new issue