mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8274879: Replace uses of StringBuffer with StringBuilder within java.base classes
Reviewed-by: naoto
This commit is contained in:
parent
e6fa5fa37e
commit
9a3e954299
11 changed files with 31 additions and 31 deletions
|
@ -401,7 +401,7 @@ final class RBTableBuilder {
|
|||
// can work right
|
||||
if (fwd && groupChars.length() > 1) {
|
||||
addContractFlags(groupChars);
|
||||
addContractOrder(new StringBuffer(groupChars).reverse().toString(),
|
||||
addContractOrder(new StringBuilder(groupChars).reverse().toString(),
|
||||
anOrder, false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue