8274898: Cleanup usages of StringBuffer in jdk tools modules

Reviewed-by: sspitsyn, lmesnik
This commit is contained in:
Andrey Turbanov 2021-12-15 19:28:58 +00:00 committed by Serguei Spitsyn
parent 7517c85da3
commit 04dbdd36dd
3 changed files with 8 additions and 8 deletions

View file

@ -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) ||