mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +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
|
@ -179,7 +179,7 @@ public final class FilePermission extends Permission implements Serializable {
|
|||
private static final char WILD_CHAR = '*';
|
||||
|
||||
// public String toString() {
|
||||
// StringBuffer sb = new StringBuffer();
|
||||
// StringBuilder sb = new StringBuilder();
|
||||
// sb.append("*** FilePermission on " + getName() + " ***");
|
||||
// for (Field f : FilePermission.class.getDeclaredFields()) {
|
||||
// if (!Modifier.isStatic(f.getModifiers())) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue