mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8274898: Cleanup usages of StringBuffer in jdk tools modules
Reviewed-by: sspitsyn, lmesnik
This commit is contained in:
parent
7517c85da3
commit
04dbdd36dd
3 changed files with 8 additions and 8 deletions
|
@ -834,9 +834,9 @@ public class Main {
|
|||
}
|
||||
|
||||
// Only used when -verbose provided
|
||||
StringBuffer sb = null;
|
||||
StringBuilder sb = null;
|
||||
if (verbose != null) {
|
||||
sb = new StringBuffer();
|
||||
sb = new StringBuilder();
|
||||
boolean inManifest =
|
||||
((man.getAttributes(name) != null) ||
|
||||
(man.getAttributes("./"+name) != null) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue