mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
Merge
This commit is contained in:
commit
f96c816c07
74 changed files with 1050 additions and 436 deletions
|
@ -900,9 +900,9 @@ import static java.lang.invoke.MethodHandleStatics.newInternalError;
|
|||
buf.append(getName(clazz));
|
||||
buf.append('.');
|
||||
}
|
||||
String name = getName();
|
||||
String name = this.name; // avoid expanding from VM
|
||||
buf.append(name == null ? "*" : name);
|
||||
Object type = getType();
|
||||
Object type = this.type; // avoid expanding from VM
|
||||
if (!isInvocable()) {
|
||||
buf.append('/');
|
||||
buf.append(type == null ? "*" : getName(type));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue